diff options
author | Gerald Carter <jerry@samba.org> | 2005-01-21 19:08:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:07 -0500 |
commit | a13e29b5f2f1e48225b5b5964bc0777948f16622 (patch) | |
tree | d52ff52d5259d288e8b577ece6a20216b6d98320 /source | |
parent | f65598b3b0dc99900d547eb67473cca5d371614f (diff) | |
download | samba-a13e29b5f2f1e48225b5b5964bc0777948f16622.tar.gz samba-a13e29b5f2f1e48225b5b5964bc0777948f16622.tar.xz samba-a13e29b5f2f1e48225b5b5964bc0777948f16622.zip |
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
Diffstat (limited to 'source')
-rw-r--r-- | source/nsswitch/winbindd_cm.c | 4 |
1 files changed, 0 insertions, 4 deletions
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; |