aboutsummaryrefslogtreecommitdiff
path: root/builtin-init-db.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-06-09 15:26:08 -0700
committerJunio C Hamano <junkio@cox.net>2006-06-09 15:26:08 -0700
commite9b9368168399bf165a0172bb00a67216479c82b (patch)
tree4f6fd6bb48856023e8d9473b73bde11f45c81e99 /builtin-init-db.c
parent7612a1efdb0c0806b43db10ce784707aae874340 (diff)
downloadgit-e9b9368168399bf165a0172bb00a67216479c82b.tar.gz
git-e9b9368168399bf165a0172bb00a67216479c82b.tar.xz
builtin-init-db: spell the in-program configuration variable in lowercase.
Just for consistency -- setup.c spells it in lowercase. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-init-db.c')
-rw-r--r--builtin-init-db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c
index 2a1384ccb..88b39a47e 100644
--- a/builtin-init-db.c
+++ b/builtin-init-db.c
@@ -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;
}