summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ignore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ignore.c b/src/ignore.c
index ddbcaf3bf..dddd7e81e 100644
--- a/src/ignore.c
+++ b/src/ignore.c
@@ -59,7 +59,7 @@ static int does_negate_pattern(git_attr_fnmatch *rule, git_attr_fnmatch *neg)
if (neg->flags & GIT_ATTR_FNMATCH_ICASE)
cmp = git__strncasecmp;
else
- cmp = strncmp;
+ cmp = git__strncmp;
/* If lengths match we need to have an exact match */
if (rule->length == neg->length) {