From fe116e261ffb7d643c9a6baee70fbfa07a20588f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Mon, 4 Apr 2011 15:33:14 +0200 Subject: [PATCH] config: Fix typo and remove debug statement 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 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/config.c b/src/config.c index c3f36f8a2..4aa0e3691 100644 --- a/src/config.c +++ b/src/config.c @@ -56,7 +56,7 @@ static void cvar_list_free(git_cvar *start) } /* - * The order is importart. The first parameter is the name we want to + * The order is important. The first parameter is the name we want to * match against, and the second one is what we're looking for */ static int cvar_section_match(const char *local, const char *input) @@ -74,10 +74,8 @@ static int cvar_section_match(const char *local, const char *input) return !strncasecmp(local, input, local_last_dot - local); /* Anything before the space in local is case-insensitive */ - if (strncasecmp(local, input, local_sp - local)) { - fprintf(stderr, "copmparison of %s and %s failed\n", local, input); + if (strncasecmp(local, input, local_sp - local)) return 0; - } /* * We compare starting from the first character after the