Author: gedmurphy
Date: Mon Jul 16 22:43:13 2007
New Revision: 27699
URL:
http://svn.reactos.org/svn/reactos?rev=27699&view=rev
Log:
call the correct event on system boot
Modified:
trunk/reactos/base/system/winlogon/winlogon.c
Modified: trunk/reactos/base/system/winlogon/winlogon.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/winlogon/winlo…
==============================================================================
--- trunk/reactos/base/system/winlogon/winlogon.c (original)
+++ trunk/reactos/base/system/winlogon/winlogon.c Mon Jul 16 22:43:13 2007
@@ -64,18 +64,18 @@
{
Sleep(1000);
- TRACE("WL: Attempting to open event
\"SvcctrlStartEvent_A3725DX\"\n");
+ TRACE("WL: Attempting to open event
\"SvcctrlStartEvent_A3752DX\"\n");
ServicesInitEvent = OpenEventW(
SYNCHRONIZE,
FALSE,
- L"SvcctrlStartEvent_A3725DX");
+ L"SvcctrlStartEvent_A3752DX");
if (ServicesInitEvent)
break;
}
if (!ServicesInitEvent)
{
- ERR("WL: Failed to open event \"SvcctrlStartEvent_A3725DX\"\n");
+ ERR("WL: Failed to open event \"SvcctrlStartEvent_A3752DX\"\n");
return FALSE;
}