From dd59ee88f686f71a9fa71267a27d8a44976961a9 Mon Sep 17 00:00:00 2001 From: Chas Williams Date: Mon, 17 Mar 2008 17:57:18 +0000 Subject: [PATCH] DEVEL15-rx-nacks-increment-with-all-newacks-20080317 LICENSE IPL10 don't "lose" newacks, apply all of them to the ack count (cherry picked from commit eee60dd38d1be14be052178816aea36b2f8de3ff) --- 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 a77a4d573..5b12b70f2 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -3837,9 +3837,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; } -- 2.39.5