mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[CSRSRV]
Clarify this one, too. svn path=/branches/ros-csrss/; revision=58465
This commit is contained in:
parent
e2d2cb40e2
commit
26cea0c412
1 changed files with 2 additions and 2 deletions
|
@ -560,7 +560,7 @@ CsrParseServerCommandLine(IN ULONG ArgumentCount,
|
|||
Status);
|
||||
|
||||
/* It's not fatal if the session ID isn't zero */
|
||||
if (SessionId) return Status;
|
||||
if (SessionId != 0) return Status;
|
||||
ASSERT(NT_SUCCESS(Status));
|
||||
}
|
||||
|
||||
|
@ -578,7 +578,7 @@ CsrParseServerCommandLine(IN ULONG ArgumentCount,
|
|||
if (_stricmp(ParameterName, "ObjectDirectory") == 0)
|
||||
{
|
||||
/* Check if a session ID is specified */
|
||||
if (SessionId)
|
||||
if (SessionId != 0)
|
||||
{
|
||||
DPRINT1("Sessions not yet implemented\n");
|
||||
ASSERT(SessionId);
|
||||
|
|
Loading…
Reference in a new issue