mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 00:45:49 +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);
|
Status);
|
||||||
|
|
||||||
/* It's not fatal if the session ID isn't zero */
|
/* It's not fatal if the session ID isn't zero */
|
||||||
if (SessionId) return Status;
|
if (SessionId != 0) return Status;
|
||||||
ASSERT(NT_SUCCESS(Status));
|
ASSERT(NT_SUCCESS(Status));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -578,7 +578,7 @@ CsrParseServerCommandLine(IN ULONG ArgumentCount,
|
||||||
if (_stricmp(ParameterName, "ObjectDirectory") == 0)
|
if (_stricmp(ParameterName, "ObjectDirectory") == 0)
|
||||||
{
|
{
|
||||||
/* Check if a session ID is specified */
|
/* Check if a session ID is specified */
|
||||||
if (SessionId)
|
if (SessionId != 0)
|
||||||
{
|
{
|
||||||
DPRINT1("Sessions not yet implemented\n");
|
DPRINT1("Sessions not yet implemented\n");
|
||||||
ASSERT(SessionId);
|
ASSERT(SessionId);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue