diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-13 18:49:54 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-13 18:49:54 -0700 |
commit | ea892b27b15fbc46a3bb3ad2ddce737dc6590ae5 (patch) | |
tree | fd9fdddbc9cc12f924cc47ff7ea2fc9c74787163 /repo-config.c | |
parent | Merge branch 'master' into next (diff) | |
parent | Merge branch 'lt/fix-config' into lt/config (diff) | |
download | tgif-ea892b27b15fbc46a3bb3ad2ddce737dc6590ae5.tar.xz |
Merge branch 'lt/config' into next
* lt/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
fix diff-delta bad memory access
Diffstat (limited to 'repo-config.c')
-rw-r--r-- | repo-config.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/repo-config.c b/repo-config.c index 63eda1bb78..127afd784c 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)); |