From eee60dd38d1be14be052178816aea36b2f8de3ff Mon Sep 17 00:00:00 2001 From: Chas Williams Date: Mon, 17 Mar 2008 17:56:38 +0000 Subject: [PATCH] rx-nacks-increment-with-all-newacks-20080317 LICENSE IPL10 don't "lose" newacks, apply all of them to the ack count --- src/rx/rx.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rx/rx.c b/src/rx/rx.c index cc783a9a98..401ff77d06 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -3833,9 +3833,7 @@ rxi_ReceiveAckPacket(register struct rx_call *call, struct rx_packet *np, call->nNacks = nNacked; } } else { - if (newAckCount) { - call->nAcks++; - } + call->nAcks += newAckCount; call->nNacks = 0; }