From db90a4b9609a980fa2f4328d38a0d2c60a1384a0 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 --- source/smbd/password.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/smbd/password.c b/source/smbd/password.c index 314b3dd3c70..f9aa10ecedf 100644 --- a/source/smbd/password.c +++ b/source/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