diff options
author | Tim Potter <tpot@samba.org> | 2002-07-21 00:49:16 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-07-21 00:49:16 +0000 |
commit | 035738863609b0762a18962f1c471bb385254f10 (patch) | |
tree | c52db615d5e49d42a0a7ddd5c62850779bf0ceec /source3/nsswitch | |
parent | 2582e955e70d166f707fd1374c1f9c120f10c2c2 (diff) | |
download | samba-035738863609b0762a18962f1c471bb385254f10.tar.gz samba-035738863609b0762a18962f1c471bb385254f10.tar.bz2 samba-035738863609b0762a18962f1c471bb385254f10.zip |
Renamed all the new_cli_netlogon_* functions to cli_netlogon_*
as they're no longer new!
(This used to be commit 277f6bbb9a63541a473a80a7994e9bde5c6f22dc)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 3ab97ed408..674e71679c 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -794,7 +794,7 @@ NTSTATUS cm_get_netlogon_cli(char *domain, unsigned char *trust_passwd, return result; } - result = new_cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ? + result = cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ? SEC_CHAN_WKSTA : SEC_CHAN_BDC, trust_passwd); if (!NT_STATUS_IS_OK(result)) { @@ -808,7 +808,7 @@ NTSTATUS cm_get_netlogon_cli(char *domain, unsigned char *trust_passwd, } /* Try again */ - result = new_cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ? + result = cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ? SEC_CHAN_WKSTA : SEC_CHAN_BDC, trust_passwd); } |