From a1f4e6e9273d5cf98cfed330c02d9a41886edf44 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 6 Dec 2000 03:22:44 +0000 Subject: Print debug if domain_client_validate() cannot fetch the trust account password (say for example if the tdb file format has changed). (-: (This used to be commit 447fbb38a857a7e97cf2a99022576521c71a4512) --- source3/smbd/password.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 48e4172ace..f759f3b781 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -1444,7 +1444,8 @@ BOOL domain_client_validate( char *user, char *domain, */ if (!secrets_fetch_trust_account_password(lp_workgroup(), trust_passwd, NULL)) { - return False; + DEBUG(0, ("domain_client_validate: could not fetch trust account password for domain %s\n", lp_workgroup())); + return False; } /* -- cgit