diff options
author | Zach Welch <zw@superlucidity.net> | 2005-04-19 21:48:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-19 21:48:15 -0700 |
commit | addb315d341437b11477d617fda3fd80e7bce3c1 (patch) | |
tree | 42370b18ee4f3afa9ac52526bf2b2006213685ed /init-db.c | |
parent | 4696cb93d1e2ded452e4e673633fd6495698ffcd (diff) | |
download | git-addb315d341437b11477d617fda3fd80e7bce3c1.tar.gz git-addb315d341437b11477d617fda3fd80e7bce3c1.tar.xz |
[PATCH] init-db.c: normalize env var handling.
Normalize init-db environment variable handling, allowing the creation
of object directories with something other than DEFAULT_DB_ENVIRONMENT.
Signed-Off-By: Zach Welch <zw@superlucidity.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init-db.c')
-rw-r--r-- | init-db.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -22,15 +22,10 @@ int main(int argc, char **argv) } sha1_dir = getenv(DB_ENVIRONMENT); - if (sha1_dir) { - struct stat st; - if (!stat(sha1_dir, &st) && S_ISDIR(st.st_mode)) - return 0; - fprintf(stderr, "DB_ENVIRONMENT set to bad directory %s: ", sha1_dir); + if (!sha1_dir) { + sha1_dir = DEFAULT_DB_ENVIRONMENT; + fprintf(stderr, "defaulting to local storage area\n"); } - - sha1_dir = DEFAULT_DB_ENVIRONMENT; - fprintf(stderr, "defaulting to private storage area\n"); len = strlen(sha1_dir); if (mkdir(sha1_dir, 0755) < 0) { if (errno != EEXIST) { |