Commit d7332c22 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

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

parent e0dcc8df
......@@ -1395,7 +1395,7 @@ static BOOL is_domain_suffix( const char *domain, const char *suffix )
int len_domain = strlen( domain ), len_suffix = strlen( suffix );
if (len_suffix > len_domain) return FALSE;
if (!_strnicmp( domain + len_domain - len_suffix, suffix, -1 )) return TRUE;
if (!stricmp( domain + len_domain - len_suffix, suffix )) return TRUE;
return FALSE;
}
......
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