msvcrt: mbsnbicmp should be case insensitive.

oldstable
Damjan Jovanovic 2007-08-04 17:48:02 +02:00 committed by Alexandre Julliard
parent 4deb14a3b6
commit d85b10accb
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/*********************************************************************