Commit 680e200c authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Report NOT_IMPLEMENTED for not implemented token classes.

parent ea782b60
......@@ -275,6 +275,11 @@ NTSTATUS WINAPI NtQueryInformationToken(
owner->Owner = sid;
}
break;
default:
{
ERR("Unhandled Token Information class!\n");
return STATUS_NOT_IMPLEMENTED;
}
}
return 0;
}
......
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