From 1127e5f6e15816211efc3f5eb42f52394be0754f Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 1 Sep 2005 20:24:41 +0000 Subject: [PATCH] r9914: key ordering in hash list is case insensitive --- source/registry/regfio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/registry/regfio.c b/source/registry/regfio.c index e6e9455eb2c..4d1adea8619 100644 --- a/source/registry/regfio.c +++ b/source/registry/regfio.c @@ -1670,7 +1670,7 @@ static BOOL create_vk_record( REGF_FILE *file, REGF_VK_REC *vk, REGISTRY_VALUE * static int hashrec_cmp( REGF_HASH_REC *h1, REGF_HASH_REC *h2 ) { - return strcmp( h1->fullname, h2->fullname ); + return StrCaseCmp( h1->fullname, h2->fullname ); } /******************************************************************* -- 2.11.4.GIT