From 463b1eb2b55ae85cfc9539c936375a989cde1076 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Fri, 30 Oct 2009 02:15:45 +0100 Subject: [PATCH] s3-passdb: cleanup some callers of pdb_get_trusteddom_pw(). Guenther --- source3/auth/auth_domain.c | 4 +--- source3/winbindd/winbindd_ads.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index 084d84ce29f..c5273603215 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -447,8 +447,6 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE; unsigned char trust_md4_password[16]; char *trust_password; - time_t last_change_time; - DOM_SID sid; fstring dc_name; struct sockaddr_storage dc_ss; @@ -481,7 +479,7 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte */ if (!pdb_get_trusteddom_pw(user_info->domain, &trust_password, - &sid, &last_change_time)) { + NULL, NULL)) { DEBUG(0, ("check_trustdomain_security: could not fetch trust " "account password for domain %s\n", user_info->domain)); diff --git a/source3/winbindd/winbindd_ads.c b/source3/winbindd/winbindd_ads.c index 119e81d3e2e..b2716716656 100644 --- a/source3/winbindd/winbindd_ads.c +++ b/source3/winbindd/winbindd_ads.c @@ -84,10 +84,8 @@ static ADS_STRUCT *ads_cached_connection(struct winbindd_domain *domain) SAFE_FREE(ads->auth.realm); if ( IS_DC ) { - DOM_SID sid; - time_t last_set_time; - if ( !pdb_get_trusteddom_pw( domain->name, &ads->auth.password, &sid, &last_set_time ) ) { + if ( !pdb_get_trusteddom_pw( domain->name, &ads->auth.password, NULL, NULL ) ) { ads_destroy( &ads ); return NULL; } -- 2.34.1