From: Stefan Metzmacher Date: Mon, 7 Mar 2022 20:16:51 +0000 (+0100) Subject: s4:auth: fix confusing DEBUG message in authsam_want_check() X-Git-Tag: samba-4.14.13~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=311a4cc141acaae8a10084f56e23efa352518ff3;p=thirdparty%2Fsamba.git 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 Reviewed-by: Andrew Bartlett (cherry picked from commit a12683bd1206df4d4d87a3842d92e34a69e172b7) --- 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; }