From 463b1eb2b55ae85cfc9539c936375a989cde1076 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 30 Oct 2009 02:15:45 +0100 Subject: s3-passdb: cleanup some callers of pdb_get_trusteddom_pw(). Guenther --- source3/auth/auth_domain.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/auth/auth_domain.c') diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index 084d84ce29..c527360321 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)); -- cgit