From 0b850e805479dbed71589ba414c77539b78995b6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 17 Dec 2007 17:38:06 +0100 Subject: [PATCH] Remove silly amounts of trailing white spaces. Michael --- source/passdb/secrets.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/passdb/secrets.c b/source/passdb/secrets.c index 8a1276b7e89..a611a3ef042 100644 --- a/source/passdb/secrets.c +++ b/source/passdb/secrets.c @@ -644,16 +644,16 @@ char *secrets_fetch_machine_password(const char *domain, /******************************************************************* Wrapper around retrieving the trust account password *******************************************************************/ - + BOOL get_trust_pw(const char *domain, uint8 ret_pwd[16], uint32 *channel) { DOM_SID sid; char *pwd; time_t last_set_time; - + /* if we are a DC and this is not our domain, then lookup an account for the domain trust */ - + if ( IS_DC && !strequal(domain, lp_workgroup()) && lp_allow_trusted_domains() ) { if (!secrets_fetch_trusted_domain_password(domain, &pwd, &sid, &last_set_time)) { @@ -662,17 +662,17 @@ BOOL get_trust_pw(const char *domain, uint8 ret_pwd[16], uint32 *channel) domain)); return False; } - + *channel = SEC_CHAN_DOMAIN; E_md4hash(pwd, ret_pwd); SAFE_FREE(pwd); return True; } - + /* Just get the account for the requested domain. In the future this * might also cover to be member of more than one domain. */ - + if (secrets_fetch_trust_account_password(domain, ret_pwd, &last_set_time, channel)) return True; -- 2.11.4.GIT