1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s4-kcc: disable the NDR printing of DRS getinfo requests

This commit is contained in:
Andrew Tridgell 2010-11-23 22:43:33 +11:00
parent 6af05f10c1
commit 5d014cad08

View 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;
}