1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r9914: key ordering in hash list is case insensitive

This commit is contained in:
Gerald Carter 2005-09-01 20:24:41 +00:00 committed by Gerald (Jerry) Carter
parent ece650b062
commit 18d0543183

View File

@ -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 );
}
/*******************************************************************