version: Don't use strncasecmp.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2019-04-01 18:50:37 +02:00 committed by Alexandre Julliard
parent cead1ded9a
commit 2e2278177c

View file

@ -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;