summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ccfbf3)
raw | patch | inline | side by side (parent: 8ccfbf3)
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 ff2b11a3b33ecba970f59bef3ba63dcc29b53855..65898fa582e973b1cb98171cd4494598dd8bc36d 100644 (file)
--- a/init-db.c
+++ b/init-db.c
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);
}