mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[KDVBOX] Fix port name comparison.
This commit is contained in:
parent
2b27d08576
commit
641c89d834
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ KdDebuggerInitialize0(
|
|||
PortString++;
|
||||
|
||||
/* Do we have a serial port? */
|
||||
if (strncmp(PortString, "VBOX", 3) != 0)
|
||||
if (strncmp(PortString, "VBOX", 4) != 0)
|
||||
{
|
||||
KDDBGPRINT("Invalid debugport: '%s'\n", CommandLine);
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
|
|
Loading…
Reference in a new issue