aboutsummaryrefslogtreecommitdiff
path: root/repo-config.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-13 14:10:48 -0700
committerJunio C Hamano <junkio@cox.net>2006-05-13 14:11:43 -0700
commit8d48ad62a902556b523ee892a3fbe4206d576d3f (patch)
tree7ac4f3014ebba31845797f62fc39dac5cd246dd1 /repo-config.c
parent639ca5497279607665847f2e3a11064441a8f2a6 (diff)
parentd14f776402d9f7040cc71ff6e3b992b2e019526a (diff)
downloadgit-8d48ad62a902556b523ee892a3fbe4206d576d3f.tar.gz
git-8d48ad62a902556b523ee892a3fbe4206d576d3f.tar.xz
Merge branch 'lt/fix-config' into lt/config
* lt/fix-config: git config syntax updates Another config file parsing fix. checkout: use --aggressive when running a 3-way merge (-m). Fix git-pack-objects for 64-bit platforms with manual adjustment of t/t1300 for "git repo-config --list" option. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'repo-config.c')
-rw-r--r--repo-config.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/repo-config.c b/repo-config.c
index 63eda1bb7..127afd784 100644
--- a/repo-config.c
+++ b/repo-config.c
@@ -64,12 +64,13 @@ static int show_config(const char* key_, const char* value_)
static int get_value(const char* key_, const char* regex_)
{
- int i;
+ char *tl;
- key = malloc(strlen(key_)+1);
- for (i = 0; key_[i]; i++)
- key[i] = tolower(key_[i]);
- key[i] = 0;
+ key = strdup(key_);
+ for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
+ *tl = tolower(*tl);
+ for (tl=key; *tl && *tl != '.'; ++tl)
+ *tl = tolower(*tl);
if (use_key_regexp) {
key_regexp = (regex_t*)malloc(sizeof(regex_t));