diff options
author | Günther Deschner <gd@samba.org> | 2013-08-28 14:53:08 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2013-08-29 16:57:51 +0200 |
commit | 77d7e2ad5a88dbe4c16e8b829d5bd0a2a5aea9bc (patch) | |
tree | 6e358255ff2c16cf2a5bd91220073be64e94a790 | |
parent | b66ce754a327a5bdb7600fb67ffb7aaac03cb7db (diff) | |
download | samba-77d7e2ad5a88dbe4c16e8b829d5bd0a2a5aea9bc.tar.gz samba-77d7e2ad5a88dbe4c16e8b829d5bd0a2a5aea9bc.tar.bz2 samba-77d7e2ad5a88dbe4c16e8b829d5bd0a2a5aea9bc.zip |
s3-winbindd: use get_trust_pw_clear() wrapper for AD connection code.
This avoids calling secrets functions directly.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | source3/winbindd/winbindd_ads.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/source3/winbindd/winbindd_ads.c b/source3/winbindd/winbindd_ads.c index fc44158211..c33b1bc3bf 100644 --- a/source3/winbindd/winbindd_ads.c +++ b/source3/winbindd/winbindd_ads.c @@ -27,7 +27,6 @@ #include "../librpc/gen_ndr/ndr_netlogon_c.h" #include "../libds/common/flags.h" #include "ads.h" -#include "secrets.h" #include "../libcli/ldap/ldap_ndr.h" #include "../libcli/security/security.h" #include "../libds/common/flag_mapping.h" @@ -209,20 +208,18 @@ static ADS_STRUCT *ads_cached_connection(struct winbindd_domain *domain) /* the machine acct password might have change - fetch it every time */ + if (!get_trust_pw_clear(domain->name, &password, NULL, NULL)) { + return NULL; + } + if ( IS_DC ) { - if ( !pdb_get_trusteddom_pw( domain->name, &password, NULL, - NULL ) ) { - return NULL; - } realm = SMB_STRDUP(domain->alt_name); } else { struct winbindd_domain *our_domain = domain; - password = secrets_fetch_machine_password(lp_workgroup(), NULL, - NULL); /* always give preference to the alt_name in our primary domain if possible */ |