From: Volker Lendecke Date: Mon, 30 Dec 2019 12:56:14 +0000 (+0100) Subject: ntlm_auth: Fix a DEBUG message X-Git-Tag: ldb-2.1.0~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=605bb4e9077aca1fa06c1c5beca42ca3b91308f7;p=thirdparty%2Fsamba.git ntlm_auth: Fix a DEBUG message This is not routine auth_generic_prepare Signed-off-by: Volker Lendecke Reviewed-by: David Disseldorp --- diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 289f648006f..aeae460ce8d 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1197,7 +1197,7 @@ static NTSTATUS ntlm_auth_prepare_gensec_server(TALLOC_CTX *mem_ctx, */ server_credentials = cli_credentials_init_anon(tmp_ctx); if (!server_credentials) { - DEBUG(0, ("auth_generic_prepare: Failed to init server credentials\n")); + DBG_ERR("Failed to init server credentials\n"); return NT_STATUS_NO_MEMORY; }