librpc/dceprc_util.c: Move debug message to DBG_DEBUG()
authorAndrew Bartlett <abartlet@samba.org>
Wed, 6 Sep 2017 23:20:27 +0000 (11:20 +1200)
committerKarolin Seeger <kseeger@samba.org>
Thu, 14 Sep 2017 15:48:27 +0000 (17:48 +0200)
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 <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
(cherry picked from commit cbb3dcf2c67dd6ddbb419fff04112e3c345c2108)

librpc/rpc/dcerpc_util.c

index b09e36a31211c2f2fe1acfca068bebcc608ec141..0808131dd145a648d9103193759b361b71a4b0f4 100644 (file)
@@ -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);