builtin-init-db: spell the in-program configuration variable in lowercase.
authorJunio C Hamano <junkio@cox.net>
Fri, 9 Jun 2006 22:26:08 +0000 (15:26 -0700)
committerJunio C Hamano <junkio@cox.net>
Fri, 9 Jun 2006 22:26:08 +0000 (15:26 -0700)
Just for consistency -- setup.c spells it in lowercase.

Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-init-db.c

index 2a1384c..88b39a4 100644 (file)
@@ -287,7 +287,7 @@ int cmd_init_db(int argc, const char **argv, char **envp)
        safe_create_dir(path, 1);
 
        if (shared_repository)
-               git_config_set("core.sharedRepository", "true");
+               git_config_set("core.sharedrepository", "true");
 
        return 0;
 }