From: Gerald Carter Date: Fri, 21 Jan 2005 19:08:17 +0000 (+0000) Subject: r4905: patch from abartlet to remove storing the auth-user credentials from the cli... X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5372 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a13e29b5f2f1e48225b5b5964bc0777948f16622;p=thirdparty%2Fsamba.git r4905: patch from abartlet to remove storing the auth-user credentials from the cli* in cm_prepare_connection(). using credentials from a domain other thanour primary domain will cause the schannel setup to fail --- diff --git a/source/nsswitch/winbindd_cm.c b/source/nsswitch/winbindd_cm.c index 90ecfe18915..f5dcb69ce08 100644 --- a/source/nsswitch/winbindd_cm.c +++ b/source/nsswitch/winbindd_cm.c @@ -215,7 +215,6 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, { char *machine_password, *machine_krb5_principal; char *ipc_username, *ipc_domain, *ipc_password; - struct ntuser_creds creds; BOOL got_mutex; BOOL add_failed_connection = True; @@ -373,9 +372,6 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, goto done; } - init_creds(&creds, ipc_username, ipc_domain, ipc_password); - cli_init_creds(*cli, &creds); - secrets_named_mutex_release(controller); got_mutex = False; *retry = False;