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 | cec051cf5fb93d9f45eca3f9cf462f78a7d7040d (patch) | |
tree | bc7d7b818b6de036dc533f8fffc2ce8d54f7c2f1 | |
parent | ea8c0a75affe56f8fbcb987cd6f8cdcd24e8a537 (diff) | |
download | samba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.tar.gz samba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.tar.xz samba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.zip |
Fixed incorrect debug.
-rw-r--r-- | source/auth/auth_domain.c | 5 | ||||
-rw-r--r-- | source/smbd/auth_domain.c | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/source/auth/auth_domain.c b/source/auth/auth_domain.c index a2e3c7a9b55..d9d7b6fd40e 100644 --- a/source/auth/auth_domain.c +++ b/source/auth/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; } - - - diff --git a/source/smbd/auth_domain.c b/source/smbd/auth_domain.c index a2e3c7a9b55..d9d7b6fd40e 100644 --- a/source/smbd/auth_domain.c +++ b/source/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; } - - - |