summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2022-03-07 21:16:51 +0100
committerJule Anger <janger@samba.org>2022-03-16 13:41:14 +0000
commita219a81ff89912cbd55050e9e1fa78731f66e3bc (patch)
tree51005df827f7e2e471f8c94d7be71b59548024c6
parente691165b4de1466a11fe8288c1601ced31b9f1ff (diff)
downloadsamba-a219a81ff89912cbd55050e9e1fa78731f66e3bc.tar.gz
s4:auth: fix confusing DEBUG message in authsam_want_check()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13879 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit a12683bd1206df4d4d87a3842d92e34a69e172b7)
-rw-r--r--source4/auth/ntlm/auth_sam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/ntlm/auth_sam.c b/source4/auth/ntlm/auth_sam.c
index ddde4363d92..673f900b0c6 100644
--- a/source4/auth/ntlm/auth_sam.c
+++ b/source4/auth/ntlm/auth_sam.c
@@ -871,13 +871,13 @@ static NTSTATUS authsam_want_check(struct auth_method_context *ctx,
/*
* The caller already did a cracknames call.
*/
- DBG_DEBUG("%s is not one domain name (DC)\n",
+ DBG_DEBUG("%s is not own domain name (DC)\n",
effective_domain);
return NT_STATUS_NOT_IMPLEMENTED;
}
if (!strequal(effective_domain, "")) {
- DBG_DEBUG("%s is not one domain name (DC)\n",
+ DBG_DEBUG("%s is not own domain name (DC)\n",
effective_domain);
return NT_STATUS_NOT_IMPLEMENTED;
}