Author: hbelusca
Date: Wed May 31 00:03:33 2017
New Revision: 74709
URL: 
http://svn.reactos.org/svn/reactos?rev=74709&view=rev
Log:
[NTOS]: Underline the fact that CmpGetRegistryPath (especially when being run in 1st-stage
text mode) is just a big hack (introduced in r3794 and r3795). I however need to monitor
its output for the moment...
Modified:
    trunk/reactos/ntoskrnl/config/cmsysini.c
Modified: trunk/reactos/ntoskrnl/config/cmsysini.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/config/cmsysini.c…
==============================================================================
--- trunk/reactos/ntoskrnl/config/cmsysini.c    [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/config/cmsysini.c    [iso-8859-1] Wed May 31 00:03:33 2017
@@ -1192,6 +1192,8 @@
     /* Check if we are booted in setup */
     if (ExpInTextModeSetup)
     {
+        DPRINT1("CmpGetRegistryPath TextMode setup HACK!!\n");
+
         /* Setup the object attributes */
         InitializeObjectAttributes(&ObjectAttributes,
                                    &KeyName,
@@ -1244,6 +1246,8 @@
     /* Add registry path */
     wcscat(ConfigPath, L"\\System32\\Config\\");
+
+    DPRINT1("CmpGetRegistryPath: ConfigPath = '%S'\n", ConfigPath);
     /* Done */
     return STATUS_SUCCESS;