secur32: Don't return STATUS_SUCCESS from LsaGetLogonSessionData stub.

This commit is contained in:
Kai Blin 2009-06-03 13:00:36 +02:00 committed by Alexandre Julliard
parent faf6f3f299
commit 66b6415193
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId,
PSECURITY_LOGON_SESSION_DATA* 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,