Commit 2e227817 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

version: Don't use strncasecmp.

parent cead1ded
......@@ -870,7 +870,7 @@ static const VS_VERSION_INFO_STRUCT16 *VersionInfo16_FindChild( const VS_VERSION
while ((char *)child < (char *)info + info->wLength )
{
if (!strncasecmp( child->szKey, szKey, cbKey ) && !child->szKey[cbKey])
if (!_strnicmp( child->szKey, szKey, cbKey ) && !child->szKey[cbKey])
return child;
if (!(child->wLength)) return NULL;
......
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