Commit 66b64151 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

secur32: Don't return STATUS_SUCCESS from LsaGetLogonSessionData stub.

parent faf6f3f2
...@@ -73,7 +73,8 @@ NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId, ...@@ -73,7 +73,8 @@ NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId,
PSECURITY_LOGON_SESSION_DATA* ppLogonSessionData) PSECURITY_LOGON_SESSION_DATA* ppLogonSessionData)
{ {
FIXME("%p %p stub\n", LogonId, ppLogonSessionData); FIXME("%p %p stub\n", LogonId, ppLogonSessionData);
return STATUS_SUCCESS; *ppLogonSessionData = NULL;
return STATUS_NOT_IMPLEMENTED;
} }
NTSTATUS WINAPI LsaLogonUser(HANDLE LsaHandle, PLSA_STRING OriginName, NTSTATUS WINAPI LsaLogonUser(HANDLE LsaHandle, PLSA_STRING OriginName,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment