Unverified Commit fb884c62 by Patrick Steinhardt Committed by GitHub

Merge pull request #4555 from libgit2/ethomson/strncmp_stdcall

win32: strncmp -> git__strncmp for win32 STDCALL
parents c9d59c61 a33deeb4
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment