projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ccfbf3
)
Fix init-db shared database case
author
Linus Torvalds
<torvalds@ppc970.osdl.org.(none)>
Tue, 19 Apr 2005 20:59:17 +0000
(13:59 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org.(none)>
Tue, 19 Apr 2005 20:59:17 +0000
(13:59 -0700)
Noted by Aaron Straus
init-db.c
patch
|
blob
|
history
diff --git
a/init-db.c
b/init-db.c
index
ff2b11a
..
65898fa
100644
(file)
--- a/
init-db.c
+++ b/
init-db.c
@@
-24,7
+24,7
@@
int main(int argc, char **argv)
sha1_dir = getenv(DB_ENVIRONMENT);
if (sha1_dir) {
struct stat st;
- if (!stat(sha1_dir, &st)
< 0
&& S_ISDIR(st.st_mode))
+ if (!stat(sha1_dir, &st) && S_ISDIR(st.st_mode))
return 0;
fprintf(stderr, "DB_ENVIRONMENT set to bad directory %s: ", sha1_dir);
}