Commit de8d2043 authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

ntdll: Return success for TokenSessionId in NtSetInformationToken.

parent 1f6e34aa
......@@ -624,6 +624,20 @@ NTSTATUS WINAPI NtSetInformationToken(
}
SERVER_END_REQ;
break;
case TokenSessionId:
if (TokenInformationLength < sizeof(DWORD))
{
ret = STATUS_INFO_LENGTH_MISMATCH;
break;
}
if (!TokenInformation)
{
ret = STATUS_ACCESS_VIOLATION;
break;
}
FIXME("TokenSessionId 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