Correct math for counting how many TSNs were GAP acknowledged

svn path=/trunk/; revision=25429
This commit is contained in:
Jeff Morriss 2008-06-05 01:29:58 +00:00
parent c35f2808b3
commit cb5cae1eed

View file

@ -2885,7 +2885,7 @@ dissect_sack_chunk(packet_info* pinfo, tvbuff_t *chunk_tvb, proto_tree *chunk_tr
sctp_ack_block(pinfo, ha, chunk_tvb, block_tree, &tsn_start, cum_tsn_ack + end);
gap_block_offset += SACK_CHUNK_GAP_BLOCK_LENGTH;
tsns_gap_acked += (end - start);
tsns_gap_acked += (end+1 - start);
}
if (tsns_gap_acked) {