mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
[NTOSKRNL]
- Fix a bug that broke /NODEBUG and /CRASHDEBUG svn path=/trunk/; revision=47216
This commit is contained in:
parent
d3f8544eca
commit
ad9cb3cc34
1 changed files with 2 additions and 2 deletions
|
@ -166,8 +166,8 @@ KdInitSystem(ULONG BootPhase,
|
||||||
/* XXX Check for settings that we support */
|
/* XXX Check for settings that we support */
|
||||||
if (strstr(CommandLine, "BREAK")) KdpEarlyBreak = TRUE;
|
if (strstr(CommandLine, "BREAK")) KdpEarlyBreak = TRUE;
|
||||||
if (strstr(CommandLine, "NODEBUG")) KdDebuggerEnabled = FALSE;
|
if (strstr(CommandLine, "NODEBUG")) KdDebuggerEnabled = FALSE;
|
||||||
if (strstr(CommandLine, "CRASHDEBUG")) KdDebuggerEnabled = FALSE;
|
else if (strstr(CommandLine, "CRASHDEBUG")) KdDebuggerEnabled = FALSE;
|
||||||
if (strstr(CommandLine, "DEBUG"))
|
else if (strstr(CommandLine, "DEBUG"))
|
||||||
{
|
{
|
||||||
/* Enable on the serial port */
|
/* Enable on the serial port */
|
||||||
KdDebuggerEnabled = TRUE;
|
KdDebuggerEnabled = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue