Author: ekohl
Date: Wed Sep 19 12:26:22 2012
New Revision: 57335
URL:
http://svn.reactos.org/svn/reactos?rev=57335&view=rev
Log:
[LSASRV]
Revert accidential changes from r57331.
Modified:
trunk/reactos/dll/win32/lsasrv/lsasrv.c
Modified: trunk/reactos/dll/win32/lsasrv/lsasrv.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lsasrv/lsasrv.c?…
==============================================================================
--- trunk/reactos/dll/win32/lsasrv/lsasrv.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/lsasrv/lsasrv.c [iso-8859-1] Wed Sep 19 12:26:22 2012
@@ -32,7 +32,7 @@
/* 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 @@
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 @@
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!!!! */