[LSALIB]: Fix build (and 2 dprints in the process).

svn path=/trunk/; revision=72758
This commit is contained in:
Hermès Bélusca-Maïto 2016-09-21 14:02:54 +00:00
parent 1b6257ac3f
commit 640e1bacfc

View file

@ -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;
}