summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-08-24 18:55:56 +0000
committerTim Potter <tpot@samba.org>2001-08-24 18:55:56 +0000
commitcec051cf5fb93d9f45eca3f9cf462f78a7d7040d (patch)
treebc7d7b818b6de036dc533f8fffc2ce8d54f7c2f1
parentea8c0a75affe56f8fbcb987cd6f8cdcd24e8a537 (diff)
downloadsamba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.tar.gz
samba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.tar.xz
samba-cec051cf5fb93d9f45eca3f9cf462f78a7d7040d.zip
Fixed incorrect debug.
-rw-r--r--source/auth/auth_domain.c5
-rw-r--r--source/smbd/auth_domain.c5
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;
}
-
-
-