s4-kcc: disable the NDR printing of DRS getinfo requests
authorAndrew Tridgell <tridge@samba.org>
Tue, 23 Nov 2010 11:43:33 +0000 (22:43 +1100)
committerAndrew Tridgell <tridge@samba.org>
Tue, 23 Nov 2010 23:19:15 +0000 (00:19 +0100)
source4/dsdb/kcc/kcc_drs_replica_info.c

index fab7202037fe2463724db5ba24d8e62fd808e1b1..e2e49b81fdab6a431e0330155dc614a65071a2ba 100644 (file)
@@ -780,7 +780,9 @@ NTSTATUS kccdrs_replica_get_info(struct irpc_message *msg,
        mem_ctx = talloc_new(msg);
        NT_STATUS_HAVE_NO_MEMORY(mem_ctx);
 
+#if 0
        NDR_PRINT_IN_DEBUG(drsuapi_DsReplicaGetInfo, req);
+#endif
 
        /* check request version */
        if (req->in.level != DRSUAPI_DS_REPLICA_GET_INFO &&
@@ -885,6 +887,8 @@ NTSTATUS kccdrs_replica_get_info(struct irpc_message *msg,
 done:
        /* put the status on the result field of the reply */
        req->out.result = status;
+#if 0
        NDR_PRINT_OUT_DEBUG(drsuapi_DsReplicaGetInfo, req);
+#endif
        return NT_STATUS_OK;
 }