diff options
author | Tim Potter <tpot@samba.org> | 2001-08-24 18:55:56 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-08-24 18:55:56 +0000 |
commit | bb94537ab5858fecb34f047c9e5c0e6fe4fd8ae9 (patch) | |
tree | c8ebe64db0c1eb819bc70aa43d698c904ed69009 /source3/smbd | |
parent | f3aeaa8c90728c47552f14da8c5e30d6a441bdca (diff) | |
download | samba-bb94537ab5858fecb34f047c9e5c0e6fe4fd8ae9.tar.gz samba-bb94537ab5858fecb34f047c9e5c0e6fe4fd8ae9.tar.bz2 samba-bb94537ab5858fecb34f047c9e5c0e6fe4fd8ae9.zip |
Fixed incorrect debug.
(This used to be commit cec051cf5fb93d9f45eca3f9cf462f78a7d7040d)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/auth_domain.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/smbd/auth_domain.c b/source3/smbd/auth_domain.c index a2e3c7a9b5..d9d7b6fd40 100644 --- a/source3/smbd/auth_domain.c +++ b/source3/smbd/auth_domain.c @@ -49,7 +49,7 @@ uint32 check_domain_security(const auth_usersupplied_info *user_info, if (!secrets_fetch_trust_account_password(lp_workgroup(), trust_passwd, &last_change_time)) { - DEBUG(0, ("domain_client_validate: could not fetch trust account password for domain %s\n", lp_workgroup())); + DEBUG(0, ("check_domain_security: could not fetch trust account password for domain %s\n", lp_workgroup())); unbecome_root(); return NT_STATUS_LOGON_FAILURE; } @@ -76,6 +76,3 @@ uint32 check_domain_security(const auth_usersupplied_info *user_info, return nt_status; } - - - |