https://git.reactos.org/?p=reactos.git;a=commitdiff;h=12aba91abb0ad0a9f9637c6497ff8a7332f5b6f5

commit 12aba91abb0ad0a9f9637c6497ff8a7332f5b6f5
Author:     Eric Kohl <[email protected]>
AuthorDate: Sun Jul 28 14:57:46 2019 +0200
Commit:     Eric Kohl <[email protected]>
CommitDate: Sun Jul 28 14:57:46 2019 +0200

    [MSV1_0] LsaApCallPackage: The messages MsV1_0EnumerateUsers, 
MsV1_0GetUserInfo and MsV1_0ReLogonUsers are obsolete.
---
 dll/win32/msv1_0/msv1_0.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dll/win32/msv1_0/msv1_0.c b/dll/win32/msv1_0/msv1_0.c
index 6529cd05112..c100aafd6ef 100644
--- a/dll/win32/msv1_0/msv1_0.c
+++ b/dll/win32/msv1_0/msv1_0.c
@@ -940,10 +940,13 @@ LsaApCallPackage(IN PLSA_CLIENT_REQUEST ClientRequest,
     {
         case MsV1_0Lm20ChallengeRequest:
         case MsV1_0Lm20GetChallengeResponse:
+            Status = STATUS_NOT_IMPLEMENTED;
+            break;
+
         case MsV1_0EnumerateUsers:
         case MsV1_0GetUserInfo:
         case MsV1_0ReLogonUsers:
-            Status = STATUS_NOT_IMPLEMENTED;
+            Status = STATUS_INVALID_PARAMETER;
             break;
 
         case MsV1_0ChangePassword:

Reply via email to