diff options
author | Tim Potter <tpot@samba.org> | 2001-05-25 07:36:58 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-05-25 07:36:58 +0000 |
commit | 22242c5038008171631c2625b2fd8b6d4b991078 (patch) | |
tree | c16d90902ec2675020e9aa9e51bc67c57a80e673 | |
parent | fe6208d09a380e29831240aeb84365f60d048c00 (diff) | |
download | samba-22242c5038008171631c2625b2fd8b6d4b991078.tar.gz samba-22242c5038008171631c2625b2fd8b6d4b991078.tar.bz2 samba-22242c5038008171631c2625b2fd8b6d4b991078.zip |
i18n fix for domain_client_validate()
(This used to be commit d6dcca7cc9bc5a1948c1b6126ca4f6cb9ccacc52)
-rw-r--r-- | source3/smbd/password.c | 2 |
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; |