mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
[LSALIB]: Fix build (and 2 dprints in the process).
svn path=/trunk/; revision=72758
This commit is contained in:
@@ -278,7 +278,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
||||
&ObjectAttributes);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT"NtOpenEvent failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT("ZwOpenEvent failed (Status 0x%08lx)\n", Status);
|
||||
|
||||
Status = ZwCreateEvent(&EventHandle,
|
||||
SYNCHRONIZE,
|
||||
@@ -287,7 +287,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
||||
FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtCreateEvent failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT1("ZwCreateEvent failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
@@ -298,7 +298,7 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
||||
ZwClose(EventHandle);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtWaitForSingleObject failed (Status 0x%08lx)\n", Status);
|
||||
DPRINT1("ZwWaitForSingleObject failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user