summaryrefslogtreecommitdiff
path: root/source3/nsswitch
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-08-23 13:38:00 +0000
committerTim Potter <tpot@samba.org>2002-08-23 13:38:00 +0000
commit55315b4b4e0f25ab9d77228219b8a4f8ceee6b29 (patch)
tree22960ead18c991be4a2c38b782743343f63b0417 /source3/nsswitch
parent53fabdee019699d39648fadafa0963ecb04ba3aa (diff)
downloadsamba-55315b4b4e0f25ab9d77228219b8a4f8ceee6b29.tar.gz
samba-55315b4b4e0f25ab9d77228219b8a4f8ceee6b29.tar.bz2
samba-55315b4b4e0f25ab9d77228219b8a4f8ceee6b29.zip
Moved calculation of secure channel type into a new function.
(This used to be commit b8dba26978c281259e02b9d6ebacaa7cba4f7787)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r--source3/nsswitch/winbindd_cm.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c
index 2dec9f0558..ddab850cf0 100644
--- a/source3/nsswitch/winbindd_cm.c
+++ b/source3/nsswitch/winbindd_cm.c
@@ -870,8 +870,7 @@ NTSTATUS cm_get_netlogon_cli(char *domain, unsigned char *trust_passwd,
return result;
}
- result = cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ?
- SEC_CHAN_WKSTA : SEC_CHAN_BDC, trust_passwd);
+ result = cli_nt_setup_creds(conn->cli, get_sec_chan(), trust_passwd);
if (!NT_STATUS_IS_OK(result)) {
DEBUG(0, ("error connecting to domain password server: %s\n",
@@ -884,8 +883,8 @@ NTSTATUS cm_get_netlogon_cli(char *domain, unsigned char *trust_passwd,
}
/* Try again */
- result = cli_nt_setup_creds(conn->cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ?
- SEC_CHAN_WKSTA : SEC_CHAN_BDC, trust_passwd);
+ result = cli_nt_setup_creds(
+ conn->cli, get_sec_chan(),trust_passwd);
}
if (!NT_STATUS_IS_OK(result)) {