Report NOT_IMPLEMENTED for not implemented token classes.

This commit is contained in:
Aric Stewart 2004-07-06 19:42:30 +00:00 committed by Alexandre Julliard
parent ea782b60d6
commit 680e200c75
1 changed files with 5 additions and 0 deletions

View File

@ -275,6 +275,11 @@ NTSTATUS WINAPI NtQueryInformationToken(
owner->Owner = sid;
}
break;
default:
{
ERR("Unhandled Token Information class!\n");
return STATUS_NOT_IMPLEMENTED;
}
}
return 0;
}