Commit 1cf6624f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kerberos: Don't fail InitializeSecurityContext if there are unsupported flags.

parent 7919b53a
......@@ -471,10 +471,7 @@ static NTSTATUS NTAPI kerberos_SpInitLsaModeContext( LSA_SEC_HANDLE credential,
context_req, target_data_rep, input, new_context, output, context_attr, ts_expiry,
mapped_context, context_data );
if (context_req & ~supported)
{
FIXME( "flags 0x%08x not supported\n", context_req & ~supported );
return SEC_E_UNSUPPORTED_FUNCTION;
}
if (!context && !input && !credential) return SEC_E_INVALID_HANDLE;
cred_handle = credhandle_sspi_to_gss( credential );
......
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