Commit 407fd270 authored by Andrew Wesie's avatar Andrew Wesie Committed by Alexandre Julliard

ntdll: Return success for TokenIntegrityLevel in NtSetInformationToken.

parent de8d2043
......@@ -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;
......
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