diff options
author | Stefan Metzmacher <metze@samba.org> | 2022-03-07 21:16:51 +0100 |
---|---|---|
committer | Jule Anger <janger@samba.org> | 2022-03-16 14:27:12 +0000 |
commit | 311a4cc141acaae8a10084f56e23efa352518ff3 (patch) | |
tree | 7120adb58385fd1bf96bf84fb54dad8d6d9665c3 /source4/auth | |
parent | 8bdf62eb2d3180b900e77992845d13f50689488a (diff) | |
download | samba-311a4cc141acaae8a10084f56e23efa352518ff3.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)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/ntlm/auth_sam.c | 4 |
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; } |