From 26cea0c412f027cb0929e8a26133116edbea161d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 10 Mar 2013 19:44:48 +0000 Subject: [PATCH] [CSRSRV] Clarify this one, too. svn path=/branches/ros-csrss/; revision=58465 --- subsystems/win32/csrsrv/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsystems/win32/csrsrv/init.c b/subsystems/win32/csrsrv/init.c index 69dbbd8d75b..80d8b55e5e6 100644 --- a/subsystems/win32/csrsrv/init.c +++ b/subsystems/win32/csrsrv/init.c @@ -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);