From 6ec2213bdb163b5301196a0dddb53086e6aa0fe8 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 25 Jul 2003 18:00:57 +0000 Subject: domain in schannel bind credentials must be the dest domain, not ours (This used to be commit e12f6a8c13f27c3caea96b467cc4294e20dad341) --- source3/nsswitch/winbindd_cm.c | 5 +++++ source3/rpc_client/cli_pipe.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 9a16606856..f9da38660d 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -169,6 +169,11 @@ static NTSTATUS cm_open_connection(const char *domain, const int pipe_index, return result; } + /* set the domain if empty; needed for schannel connections */ + if ( !*new_conn->cli->domain ) + fstrcpy( new_conn->cli->domain, domain ); + + if ( !cli_nt_session_open (new_conn->cli, pipe_index) ) { result = NT_STATUS_PIPE_NOT_AVAILABLE; /* diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 53ff58b966..2554d8c06b 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -697,8 +697,10 @@ static NTSTATUS create_rpc_bind_req(struct cli_state *cli, prs_struct *rpc_out, /* Use lp_workgroup() if domain not specified */ - if (!domain || !domain[0]) + if (!domain || !domain[0]) { + DEBUG(10,("create_rpc_bind_req: no domain; assuming my own\n")); domain = lp_workgroup(); + } init_rpc_auth_netsec_neg(&netsec_neg, domain, my_name); -- cgit