From ebd73f37a2103965eea4967b3983b8a6219316a1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 12 May 2000 05:07:26 +0000 Subject: use our primary domain trust account for trusted domain authentication (This used to be commit db90a4b9609a980fa2f4328d38a0d2c60a1384a0) --- source3/smbd/password.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 314b3dd3c7..f9aa10eced 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -1435,9 +1435,9 @@ BOOL domain_client_validate( char *user, char *domain, } /* - * Get the machine account password. + * Get the machine account password for our primary domain */ - if (!get_trust_account_password(domain, trust_passwd, NULL)) + if (!get_trust_account_password(lp_workgroup(), trust_passwd, NULL)) { return False; } -- cgit