diff options
author | Tim Potter <tpot@samba.org> | 2002-08-23 13:38:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-23 13:38:00 +0000 |
commit | 55315b4b4e0f25ab9d77228219b8a4f8ceee6b29 (patch) | |
tree | 22960ead18c991be4a2c38b782743343f63b0417 /source3/libsmb | |
parent | 53fabdee019699d39648fadafa0963ecb04ba3aa (diff) | |
download | samba-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/libsmb')
-rw-r--r-- | source3/libsmb/trust_passwd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/libsmb/trust_passwd.c b/source3/libsmb/trust_passwd.c index fe6b673e39..d500cb3ab7 100644 --- a/source3/libsmb/trust_passwd.c +++ b/source3/libsmb/trust_passwd.c @@ -35,8 +35,7 @@ static NTSTATUS just_change_the_password(struct cli_state *cli, TALLOC_CTX *mem_ unsigned char new_trust_passwd_hash[16]) { NTSTATUS result; - result = cli_nt_setup_creds(cli, (lp_server_role() == ROLE_DOMAIN_MEMBER) ? - SEC_CHAN_WKSTA : SEC_CHAN_BDC, orig_trust_passwd_hash); + result = cli_nt_setup_creds(cli, get_sec_chan(), orig_trust_passwd_hash); if (!NT_STATUS_IS_OK(result)) { DEBUG(1,("just_change_the_password: unable to setup creds (%s)!\n", |