From a13e19c1af7c3985864f56e98c58c953d808e25e Mon Sep 17 00:00:00 2001 From: Chas Williams Date: Mon, 17 Mar 2008 17:57:41 +0000 Subject: [PATCH] STABLE14-rx-nacks-increment-with-all-newacks-20080317 LICENSE IPL10 FIXES 90531 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 021c763b6..41309143b 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -3824,9 +3824,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