From c7f3f20590971d2777b81302484e32b595d109d5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 7 Sep 2017 11:20:27 +1200 Subject: [PATCH] librpc/dceprc_util.c: Move debug message to DBG_DEBUG() This message shows up a lot (every packet) at level 6 for the succesful case BUG: https://bugzilla.samba.org/show_bug.cgi?id=13017 Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall (cherry picked from commit cbb3dcf2c67dd6ddbb419fff04112e3c345c2108) --- librpc/rpc/dcerpc_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librpc/rpc/dcerpc_util.c b/librpc/rpc/dcerpc_util.c index b09e36a3121..0808131dd14 100644 --- a/librpc/rpc/dcerpc_util.c +++ b/librpc/rpc/dcerpc_util.c @@ -267,8 +267,8 @@ NTSTATUS dcerpc_pull_auth_trailer(const struct ncacn_packet *pkt, return NT_STATUS_RPC_PROTOCOL_ERROR; } - DEBUG(6,(__location__ ": auth_pad_length %u\n", - (unsigned)auth->auth_pad_length)); + DBG_DEBUG("auth_pad_length %u\n", + (unsigned)auth->auth_pad_length); talloc_steal(mem_ctx, auth->credentials.data); talloc_free(ndr); -- 2.47.3