Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git_config: access() returns 0 on success, not > 0
author
Johannes Schindelin
<Johannes.Schindelin@gmx.de>
Tue, 20 Jun 2006 07:51:09 +0000
(09:51 +0200)
committer
Junio C Hamano
<junkio@cox.net>
Tue, 20 Jun 2006 08:21:53 +0000
(
01:21
-0700)
Another late-night bug. Sorry again.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
config.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
92a28be
)
diff --git
a/config.c
b/config.c
index d064f429cb4369ac08f7ad267b0b182112462b16..3e077d4c6ca4f7162e3a3254e1b3e90db33270ff 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-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);
}