diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-06-20 09:51:09 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-20 01:21:53 -0700 |
commit | e33d0611c0dd438ed9c1960518540c707201707a (patch) | |
tree | 1b4634ca739fb0e44e1097fa6e4aeadd8cd6e283 | |
parent | 92a28be0ce12a50e0e53268be99130c2ef504c7e (diff) | |
download | git-e33d0611c0dd438ed9c1960518540c707201707a.tar.gz git-e33d0611c0dd438ed9c1960518540c707201707a.tar.xz |
git_config: access() returns 0 on success, not > 0
Another late-night bug. Sorry again.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -335,7 +335,7 @@ int git_config(config_fn_t fn) if (home) { char *user_config = strdup(mkpath("%s/.gitconfig", home)); - if (access(user_config, R_OK) > 0) + if (!access(user_config, R_OK)) ret = git_config_from_file(fn, user_config); free(user_config); } |