Commit 57444692 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kerberos: Don't fail on caller supplied credentials in kerberos_SpAcquireCredentialsHandle.

parent 54dea1dc
......@@ -832,11 +832,7 @@ static NTSTATUS NTAPI kerberos_SpAcquireCredentialsHandle(
TRACE( "(%s 0x%08x %p %p %p %p %p %p)\n", debugstr_us(principal_us), credential_use,
logon_id, auth_data, get_key_fn, get_key_arg, credential, ts_expiry );
if (auth_data)
{
FIXME( "specific credentials not supported\n" );
return SEC_E_UNKNOWN_CREDENTIALS;
}
if (auth_data) FIXME( "specific credentials not supported\n" );
switch (credential_use)
{
......
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