From ebe1289de5af7ef5f46f243bdb1d67ad6f723573 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Sat, 3 Jan 2004 23:52:40 +0000 Subject: [PATCH] Use strncmp. svn path=/trunk/; revision=7445 --- reactos/lib/version/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/version/info.c b/reactos/lib/version/info.c index 030a8b7d120..384bce57348 100644 --- a/reactos/lib/version/info.c +++ b/reactos/lib/version/info.c @@ -602,7 +602,7 @@ static VS_VERSION_INFO_STRUCT16 *VersionInfo16_FindChild( VS_VERSION_INFO_STRUCT while ( (DWORD)child < (DWORD)info + info->wLength ) { - if ( !strncasecmp( child->szKey, szKey, cbKey ) ) + if ( !strncmp( child->szKey, szKey, cbKey ) ) return child; if (!(child->wLength)) return NULL;