advapi32: Quiet a noisy fixme.

This commit is contained in:
Austin English 2008-10-14 22:43:23 -05:00 committed by Alexandre Julliard
parent ec91536ec9
commit 6f23a98c08
1 changed files with 6 additions and 2 deletions

View File

@ -2315,9 +2315,13 @@ BOOL WINAPI ImpersonateLoggedOnUser(HANDLE hToken)
NTSTATUS Status;
HANDLE ImpersonationToken;
TOKEN_TYPE Type;
static BOOL warn = TRUE;
FIXME( "(%p)\n", hToken );
if (warn)
{
FIXME( "(%p)\n", hToken );
warn = FALSE;
}
if (!GetTokenInformation( hToken, TokenType, &Type,
sizeof(TOKEN_TYPE), &size ))
return FALSE;