From 57b3b122296452fd78261d21e06ffa6dd3a10156 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 27 Feb 2017 13:35:59 +0000 Subject: [PATCH] winbind: Fix a debug message Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Mon Mar 6 23:18:46 CET 2017 on sn-devel-144 --- source3/winbindd/winbindd_pam.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 741a42f86bd..74afdcc75a4 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -1271,7 +1271,8 @@ static NTSTATUS winbindd_dual_auth_passdb(TALLOC_CTX *mem_ctx, status = make_auth_context_fixed(frame, &auth_context, challenge->data); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("Failed to test authentication with check_sam_security_info3: %s\n", nt_errstr(status))); + DBG_ERR("make_auth_context_fixed failed: %s\n", + nt_errstr(status)); TALLOC_FREE(frame); return status; } -- 2.11.4.GIT