From e55869be78322436db5d3600bcabee9a0e4ca9cb Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Mon, 16 Jul 2007 18:43:13 +0000 Subject: [PATCH] call the correct event on system boot svn path=/trunk/; revision=27699 --- reactos/base/system/winlogon/winlogon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/base/system/winlogon/winlogon.c b/reactos/base/system/winlogon/winlogon.c index 861046888c2..1b8cf771c77 100644 --- a/reactos/base/system/winlogon/winlogon.c +++ b/reactos/base/system/winlogon/winlogon.c @@ -64,18 +64,18 @@ StartServicesManager(VOID) { 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; }