mirror of
https://github.com/samba-team/samba.git
synced 2025-08-07 09:49:30 +03:00
s3:rpc_client: handle DCERPC_AUTH_TYPE_SCHANNEL as any other gensec backend
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -1624,11 +1624,11 @@ static void rpc_pipe_bind_step_one_done(struct tevent_req *subreq)
|
||||
|
||||
case DCERPC_AUTH_TYPE_NONE:
|
||||
case DCERPC_AUTH_TYPE_NCALRPC_AS_SYSTEM:
|
||||
case DCERPC_AUTH_TYPE_SCHANNEL:
|
||||
/* Bind complete. */
|
||||
tevent_req_done(req);
|
||||
return;
|
||||
|
||||
case DCERPC_AUTH_TYPE_SCHANNEL:
|
||||
case DCERPC_AUTH_TYPE_NTLMSSP:
|
||||
case DCERPC_AUTH_TYPE_SPNEGO:
|
||||
case DCERPC_AUTH_TYPE_KRB5:
|
||||
@ -1663,11 +1663,11 @@ static void rpc_pipe_bind_step_one_done(struct tevent_req *subreq)
|
||||
|
||||
case DCERPC_AUTH_TYPE_NONE:
|
||||
case DCERPC_AUTH_TYPE_NCALRPC_AS_SYSTEM:
|
||||
case DCERPC_AUTH_TYPE_SCHANNEL:
|
||||
/* Bind complete. */
|
||||
tevent_req_done(req);
|
||||
return;
|
||||
|
||||
case DCERPC_AUTH_TYPE_SCHANNEL:
|
||||
case DCERPC_AUTH_TYPE_NTLMSSP:
|
||||
case DCERPC_AUTH_TYPE_KRB5:
|
||||
case DCERPC_AUTH_TYPE_SPNEGO:
|
||||
|
Reference in New Issue
Block a user