From d7354d70b0cc56f16b3dece3bf271eaffaeaf029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Wed, 30 Mar 2011 16:22:31 +0200 Subject: [PATCH] build_varname: lowercase the variable name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín Nieto --- src/config.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/config.c b/src/config.c index 71a173f47..41c4d3a8e 100644 --- a/src/config.c +++ b/src/config.c @@ -686,9 +686,10 @@ static int config_parse(git_config *cfg_file) } /* - * Gives $section.$name back, using only name_len chars from the name, - * which is useful so we don't have to copy the variable name twice. - * Don't forget to free the memory you get. + * Returns $section.$name, using only name_len chars from the name, + * which is useful so we don't have to copy the variable name + * twice. The name of the variable is set to lowercase. + *Don't forget to free the buffer. */ static char *build_varname(const char *section, const char *name, int name_len) { @@ -703,6 +704,9 @@ static char *build_varname(const char *section, const char *name, int name_len) return NULL; ret = snprintf(varname, total_len, "%s.%s", section, name); + if(ret >= 0){ + strtolower(varname + section_len + 1); + } return varname; }