From: Andrew Bartlett Date: Wed, 6 Sep 2017 23:20:27 +0000 (+1200) Subject: librpc/dceprc_util.c: Move debug message to DBG_DEBUG() X-Git-Tag: samba-4.7.0rc6~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c7f3f20590971d2777b81302484e32b595d109d5;p=thirdparty%2Fsamba.git 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) --- 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);