1
0
mirror of https://github.com/simh/simh.git synced 2026-03-06 11:13:29 +00:00

Fixed problem where transmit buffers are never sent if the first attempt to send them happens when there is no connection to the peer.

This commit is contained in:
Rob Jarratt
2013-06-02 20:58:35 +01:00
parent edf6ad7d69
commit 240d3ad1a7

View File

@@ -393,10 +393,11 @@ t_stat send_buffer(int dupindex)
{
r = send_packet(&dup_dev[dupindex], &kdp_ldsc[dupindex], d->txbuf, d->txbuflen);
d->txnext += d->txnow;
d->txnow = 0;
kmc_output = TRUE;
}
d->txnow = 0;
return r;
}