mshtml: Use stricmp() instead of _strnicmp(..., -1).

Signed-off-by: Paul Gofman <gofmanp@gmail.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Paul Gofman 2020-03-27 13:25:58 +03:00 committed by Alexandre Julliard
parent de5d147de8
commit 585d4fb742
1 changed files with 1 additions and 1 deletions

View File

@ -1180,7 +1180,7 @@ static nsresult NSAPI nsChannel_SetRequestMethod(nsIHttpChannel *iface,
nsACString_GetData(aRequestMethod, &method);
for(i=0; i < ARRAY_SIZE(request_method_strings); i++) {
if(!_strnicmp(method, request_method_strings[i], -1)) {
if(!stricmp(method, request_method_strings[i])) {
This->request_method = i;
return NS_OK;
}