X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=repo-config.c;h=127afd784c1fcdb531c1d3435f724d0041151e90;hb=e49289dfb788ce47af2939621540fa97abe318ae;hp=63eda1bb783fcb9ff72843e74383abb0f0581441;hpb=4edd44725c621b3a2c6c9c4d8f130ceea2ba355a;p=git.git diff --git a/repo-config.c b/repo-config.c index 63eda1bb..127afd78 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));