Andrew Wesie : ntdll: Return success for TokenIntegrityLevel in NtSetInformationToken.

Alexandre Julliard julliard at winehq.org
Fri May 18 16:53:13 CDT 2018


Module: wine
Branch: master
Commit: 407fd270a3114ea6a8f39d893292086a84e3d481
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=407fd270a3114ea6a8f39d893292086a84e3d481

Author: Andrew Wesie <awesie at gmail.com>
Date:   Fri May 18 04:51:01 2018 +0000

ntdll: Return success for TokenIntegrityLevel in NtSetInformationToken.

Signed-off-by: Andrew Wesie <awesie at gmail.com>
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/nt.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 4ff9880..dc0ce04 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -638,6 +638,10 @@ NTSTATUS WINAPI NtSetInformationToken(
         FIXME("TokenSessionId stub!\n");
         ret = STATUS_SUCCESS;
         break;
+    case TokenIntegrityLevel:
+        FIXME("TokenIntegrityLevel stub!\n");
+        ret = STATUS_SUCCESS;
+        break;
     default:
         FIXME("unimplemented class %u\n", TokenInformationClass);
         break;




More information about the wine-cvs mailing list