diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-31 17:48:20 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-24 19:02:32 +0100 |
commit | c53a52a264c51d87190623ac2c9595e05c8e8695 (patch) | |
tree | de19a9586da9119da9d0fb4e3e31f0e07011e492 /source3/winbindd | |
parent | 665593d6acd8bc9b0c78515050cb7dd107c3867d (diff) | |
download | samba-c53a52a264c51d87190623ac2c9595e05c8e8695.tar.gz samba-c53a52a264c51d87190623ac2c9595e05c8e8695.tar.xz samba-c53a52a264c51d87190623ac2c9595e05c8e8695.zip |
s3:winbindd_cm: make use of cli_tree_connect()
metze
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index cfb11039fb0..85630502734 100644 --- a/source3/winbindd/winbindd_cm.c +++ b/source3/winbindd/winbindd_cm.c @@ -968,7 +968,7 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, winbindd_set_locator_kdc_envs(domain); - result = cli_tcon_andx(*cli, "IPC$", "IPC", "", 0); + result = cli_tree_connect(*cli, "IPC$", "IPC", "", 0); if (!NT_STATUS_IS_OK(result)) { DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result))); |