Ignore case of registry key and value names.

svn path=/trunk/; revision=6378
This commit is contained in:
Eric Kohl 2003-10-19 19:42:20 +00:00
parent eaf5358cf8
commit e3a669e3fa
3 changed files with 12 additions and 8 deletions

View file

@ -1,16 +1,20 @@
Changes in v1.8.16 (12/10/2003) (ekohl)
Changes in v1.8.17 (10/19/2003) (ekohl)
- Ignore case of registry key and value names
Changes in v1.8.16 (10/12/2003) (ekohl)
- Renamed a lot of variables and functions in the registry
- Fixed buggy cell size calculation
Changes in v1.8.15 (29/08/2003) (chorns)
Changes in v1.8.15 (8/29/2003) (chorns)
- Add top-level makefile
- Add fdebug/.cvsignore
- Don't use rdel to remove files in tools/Makefile
- Remove warning in freeldr/mm/meminit.c
Changes in v1.8.14 (10/08/2003) (chorns)
Changes in v1.8.14 (8/10/2003) (chorns)
- Clear screen to black when booting ReactOS

View file

@ -22,7 +22,7 @@
/* just some stuff */
#define VERSION "FreeLoader v1.8.16"
#define VERSION "FreeLoader v1.8.17"
#define COPYRIGHT "Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>"
#define AUTHOR_EMAIL "<brianp@sginet.com>"
#define BY_AUTHOR "by Brian Palmer"
@ -36,7 +36,7 @@
//
#define FREELOADER_MAJOR_VERSION 1
#define FREELOADER_MINOR_VERSION 8
#define FREELOADER_PATCH_VERSION 16
#define FREELOADER_PATCH_VERSION 17
#ifndef ASM

View file

@ -270,7 +270,7 @@ RegCreateKey(HKEY ParentKey,
KeyList);
DbgPrint((DPRINT_REGISTRY, "SearchKey 0x%x\n", SearchKey));
DbgPrint((DPRINT_REGISTRY, "Searching '%s'\n", SearchKey->Name));
if (strncmp(SearchKey->Name, name, subkeyLength) == 0)
if (strnicmp(SearchKey->Name, name, subkeyLength) == 0)
break;
Ptr = Ptr->Flink;
@ -451,7 +451,7 @@ RegOpenKey(HKEY ParentKey,
DbgPrint((DPRINT_REGISTRY, "SearchKey 0x%x\n", SearchKey));
DbgPrint((DPRINT_REGISTRY, "Searching '%s'\n", SearchKey->Name));
if (strncmp(SearchKey->Name, name, subkeyLength) == 0)
if (strnicmp(SearchKey->Name, name, subkeyLength) == 0)
break;
Ptr = Ptr->Flink;
@ -695,7 +695,7 @@ RegDeleteValue(HKEY Key,
Value = CONTAINING_RECORD(Ptr,
VALUE,
ValueList);
if (strcmp(Value->Name, ValueName) == 0)
if (stricmp(Value->Name, ValueName) == 0)
break;
Ptr = Ptr->Flink;