mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
lstrncmpi isn't a windows API, use strncasecmp instead.
This commit is contained in:
parent
d10ca9ce46
commit
65e26bf205
@ -229,7 +229,7 @@ HKEY getDataType(LPSTR *lpValue)
|
||||
for (; counter < LAST_TYPE_MAP; counter++)
|
||||
{
|
||||
LONG len = strlen(typeMap[counter].mask);
|
||||
if ( lstrncmpi( *lpValue, typeMap[counter].mask, len) == IDENTICAL)
|
||||
if ( strncasecmp( *lpValue, typeMap[counter].mask, len) == IDENTICAL)
|
||||
{
|
||||
/*
|
||||
* We found it, modify the value's pointer in order to skip the data
|
||||
|
Loading…
Reference in New Issue
Block a user