From 449b78ccc5bee41534ba5aaca7b36e398a4515af Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 11 May 2010 00:36:56 +0000 Subject: [PATCH] [NTOSKRNL] - 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ex/init.c b/reactos/ntoskrnl/ex/init.c index fed59bce758..cc040e4b60d 100644 --- a/reactos/ntoskrnl/ex/init.c +++ b/reactos/ntoskrnl/ex/init.c @@ -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; } -- 2.17.1