mirror of
https://github.com/reactos/wine.git
synced 2025-01-24 12:57:26 +00:00
rpcrt4: RPC_C_AUTHN_LEVEL_NONE and RPC_C_AUTHN_LEVEL_DEFAULT are
handled at the binding level now instead of the message level, so remove this special handling in RPCRT4_Send.
This commit is contained in:
parent
20c53a77e2
commit
06dd3efe2f
@ -563,10 +563,7 @@ RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header,
|
||||
RPC_STATUS r;
|
||||
SecBuffer out;
|
||||
|
||||
if (!Connection->AuthInfo ||
|
||||
Connection->AuthInfo->AuthnLevel == RPC_C_AUTHN_LEVEL_DEFAULT ||
|
||||
Connection->AuthInfo->AuthnLevel == RPC_C_AUTHN_LEVEL_NONE ||
|
||||
SecIsValidHandle(&Connection->ctx))
|
||||
if (!Connection->AuthInfo || SecIsValidHandle(&Connection->ctx))
|
||||
{
|
||||
return RPCRT4_SendAuth(Connection, Header, Buffer, BufferLength, NULL, 0);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user