[NTOSKRNL]

- Fix a typo 
- Safe mode with networking has an OptionValue of 2 not 1
- Currently unused (for now ;))

svn path=/trunk/; revision=47157
This commit is contained in:
Cameron Gutman 2010-05-11 00:36:56 +00:00
parent 609171f4ac
commit 449b78ccc5

View 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;
}