From fc7da8894757bce22440916198c7ae2d9bf40fc2 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Wed, 19 Sep 2012 12:26:22 +0000 Subject: [PATCH] [LSASRV] Revert accidential changes from r57331. svn path=/trunk/; revision=57335 --- reactos/dll/win32/lsasrv/lsasrv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/dll/win32/lsasrv/lsasrv.c b/reactos/dll/win32/lsasrv/lsasrv.c index d548b90ffe7..6398e999d5a 100644 --- a/reactos/dll/win32/lsasrv/lsasrv.c +++ b/reactos/dll/win32/lsasrv/lsasrv.c @@ -32,7 +32,7 @@ LsapInitLsa(VOID) /* Start the RPC server */ LsarStartRpcServer(); - DbgPrint("Creating notification event!\n"); + TRACE("Creating notification event!\n"); /* Notify the service manager */ hEvent = CreateEventW(NULL, TRUE, @@ -41,7 +41,7 @@ LsapInitLsa(VOID) if (hEvent == NULL) { dwError = GetLastError(); - DbgPrint("Failed to create the notication event (Error %lu)\n", dwError); + TRACE("Failed to create the notication event (Error %lu)\n", dwError); if (dwError == ERROR_ALREADY_EXISTS) { @@ -50,13 +50,13 @@ LsapInitLsa(VOID) L"LSA_RPC_SERVER_ACTIVE"); if (hEvent == NULL) { - DbgPrint("Could not open the notification event (Error %lu)\n", GetLastError()); + ERR("Could not open the notification event (Error %lu)\n", GetLastError()); return STATUS_UNSUCCESSFUL; } } } - DbgPrint("Set notification event!\n"); + TRACE("Set notification event!\n"); SetEvent(hEvent); /* NOTE: Do not close the event handle!!!! */