1
0
mirror of https://github.com/simh/simh.git synced 2026-03-03 10:06:27 +00:00

DUP: Remove redundant transmit packet trace

The XMT trace is done in ddcmp_tmxr_put_lacket_ln, and is redundant in dup_put_msg_bytes.
This commit is contained in:
Timothe Litt
2013-07-10 13:01:53 -04:00
parent 06ec621754
commit 07432b7272

View File

@@ -747,7 +747,6 @@ if (!tmxr_tpbusyln(&dup_ldsc[dup])) { /* Not Busy sending? */
sim_debug (DBG_TRC, DUPDPTR, "dup_put_msg_bytes(dup=%d, len=%d, start=%s, end=%s) %s\n",
dup, len, start ? "TRUE" : "FALSE", end ? "TRUE" : "FALSE", breturn ? "Good" : "Busy");
if (breturn && (tmxr_tpbusyln (&dup_ldsc[dup]) || dup_xmtpkbytes[dup])) {
ddcmp_packet_trace (DBG_PKT, DUPDPTR, ">>> XMT Packet", dup_xmtpacket[dup], dup_xmtpkoffset[dup], TRUE);
if (dup_xmt_complete_callback[dup])
dup_svc(dup_units+dup);
}