summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-25 07:36:58 +0000
committerTim Potter <tpot@samba.org>2001-05-25 07:36:58 +0000
commit22242c5038008171631c2625b2fd8b6d4b991078 (patch)
treec16d90902ec2675020e9aa9e51bc67c57a80e673 /source3
parentfe6208d09a380e29831240aeb84365f60d048c00 (diff)
downloadsamba-22242c5038008171631c2625b2fd8b6d4b991078.tar.gz
samba-22242c5038008171631c2625b2fd8b6d4b991078.tar.bz2
samba-22242c5038008171631c2625b2fd8b6d4b991078.zip
i18n fix for domain_client_validate()
(This used to be commit d6dcca7cc9bc5a1948c1b6126ca4f6cb9ccacc52)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c
index 303ed783e9..35aaf10e06 100644
--- a/source3/smbd/password.c
+++ b/source3/smbd/password.c
@@ -1562,7 +1562,7 @@ BOOL domain_client_validate( char *user, char *domain,
/*
* Get the machine account password for our primary domain
*/
- if (!secrets_fetch_trust_account_password(lp_workgroup(), trust_passwd, &last_change_time))
+ if (!secrets_fetch_trust_account_password(domain, trust_passwd, &last_change_time))
{
DEBUG(0, ("domain_client_validate: could not fetch trust account password for domain %s\n", lp_workgroup()));
return False;