Remove duplicate getenv(DB_ENVIRONMENT) call
[gitweb.git] / init-db.c
index bc65086368b44f37a8c7e47734e5b0dffed8873c..b002dc653c956a5a91c8d059e023996677f8b8e1 100644 (file)
--- a/init-db.c
+++ b/init-db.c
@@ -7,11 +7,11 @@
 
 int main(int argc, char **argv)
 {
-       char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
-       int len, i, fd;
+       char *sha1_dir, *path;
+       int len, i;
 
-       if (mkdir(".dircache", 0700) < 0) {
-               perror("unable to create .dircache");
+       if (mkdir(".git", 0755) < 0) {
+               perror("unable to create .git directory");
                exit(1);
        }
 
@@ -24,18 +24,18 @@ 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))
-                       return;
+               if (!stat(sha1_dir, &st) && S_ISDIR(st.st_mode))
+                       return 0;
                fprintf(stderr, "DB_ENVIRONMENT set to bad directory %s: ", sha1_dir);
        }
 
        /*
-        * The default case is to have a DB per managed directory. 
+        * The default case is to have a DB per managed directory.
         */
        sha1_dir = DEFAULT_DB_ENVIRONMENT;
        fprintf(stderr, "defaulting to private storage area\n");
        len = strlen(sha1_dir);
-       if (mkdir(sha1_dir, 0700) < 0) {
+       if (mkdir(sha1_dir, 0755) < 0) {
                if (errno != EEXIST) {
                        perror(sha1_dir);
                        exit(1);
@@ -45,7 +45,7 @@ int main(int argc, char **argv)
        memcpy(path, sha1_dir, len);
        for (i = 0; i < 256; i++) {
                sprintf(path+len, "/%02x", i);
-               if (mkdir(path, 0700) < 0) {
+               if (mkdir(path, 0755) < 0) {
                        if (errno != EEXIST) {
                                perror(path);
                                exit(1);