From edeb548dd18ef31acfea2015cf8082e6e8d97721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sat, 23 Sep 2006 16:01:02 +0000 Subject: [PATCH] Subkeys names should be case insensitive. Fixes the 'make install' problem, where shell was not starting at third boot svn path=/trunk/; revision=24236 --- reactos/tools/mkhive/registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/mkhive/registry.c b/reactos/tools/mkhive/registry.c index fcae34a3602..c1977544aa7 100644 --- a/reactos/tools/mkhive/registry.c +++ b/reactos/tools/mkhive/registry.c @@ -153,7 +153,7 @@ RegpOpenOrCreateKey( ParentKey->RegistryHive, ParentKey->KeyCell, &KeyString, - 0, + OBJ_CASE_INSENSITIVE, &SubKeyCell, &BlockOffset); if (AllowCreation && Status == STATUS_OBJECT_NAME_NOT_FOUND)