summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-09-01 20:24:41 +0000
committerGerald Carter <jerry@samba.org>2005-09-01 20:24:41 +0000
commit1127e5f6e15816211efc3f5eb42f52394be0754f (patch)
tree79a3fba2c907f02222de0128e9a6e6a47a5b2d69 /source
parentab66e15c12afbaa212b2a418adc7692c4400c4e1 (diff)
downloadsamba-1127e5f6e15816211efc3f5eb42f52394be0754f.tar.gz
samba-1127e5f6e15816211efc3f5eb42f52394be0754f.tar.xz
samba-1127e5f6e15816211efc3f5eb42f52394be0754f.zip
r9914: key ordering in hash list is case insensitive
Diffstat (limited to 'source')
-rw-r--r--source/registry/regfio.c2
1 files changed, 1 insertions, 1 deletions
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 );
}
/*******************************************************************