[NTOSKRNL]
authorCameron Gutman <aicommander@gmail.com>
Tue, 11 May 2010 00:36:56 +0000 (00:36 +0000)
committerCameron Gutman <aicommander@gmail.com>
Tue, 11 May 2010 00:36:56 +0000 (00:36 +0000)
- Fix a typo
- Safe mode with networking has an OptionValue of 2 not 1
- Currently unused (for now ;))

svn path=/trunk/; revision=47157

reactos/ntoskrnl/ex/init.c

index fed59bc..cc040e4 100644 (file)
@@ -1612,7 +1612,7 @@ Phase1InitializationDiscard(IN PVOID Context)
             else if (!strncmp(SafeBoot, "NETWORK", 7))
             {
                 /* With Networking */
-                InitSafeBootMode = 1;
+                InitSafeBootMode = 2;
                 SafeBoot += 7;
                 MessageCode = BOOTING_IN_SAFEMODE_NETWORK;
             }