Commit d85b10ac authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

msvcrt: mbsnbicmp should be case insensitive.

parent 4deb14a3
......@@ -593,7 +593,7 @@ int CDECL _mbsnbicmp(const unsigned char* str, const unsigned char* cmp, MSVCRT_
}
return 0; /* Matched len bytes */
}
return u_strncmp(str,cmp,len);
return u_strncasecmp(str,cmp,len);
}
/*********************************************************************
......
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