itss: Use case-insensitive strcmp.

This commit is contained in:
Andrew Eikum 2012-01-09 15:28:31 -06:00 committed by Alexandre Julliard
parent abd9f38273
commit f71efc297b
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ static HRESULT WINAPI ITS_IParseDisplayNameImpl_ParseDisplayName(
TRACE("%p %s %p %p\n", This,
debugstr_w( pszDisplayName ), pchEaten, ppmkOut );
if( strncmpW( pszDisplayName, szPrefix, prefix_len ) )
if( strncmpiW( pszDisplayName, szPrefix, prefix_len ) )
return MK_E_SYNTAX;
/* search backwards for a double colon */