fix a syntax error on the last check-in...

svn path=/trunk/; revision=21000
This commit is contained in:
Luis Ontanon 2007-03-08 00:43:08 +00:00
parent 8c8595e496
commit b6ab56f26d
1 changed files with 1 additions and 1 deletions

View File

@ -2775,7 +2775,7 @@ dissect_sack_chunk(packet_info* pinfo, tvbuff_t *chunk_tvb, proto_tree *chunk_tr
for(gap_block_number = 1; gap_block_number <= number_of_gap_blocks; gap_block_number++) {
proto_item* pi;
proto_tree* pt;
guint32 tsn_start; = cum_tsn_ack + start;
guint32 tsn_start;
start = tvb_get_ntohs(chunk_tvb, gap_block_offset);
end = tvb_get_ntohs(chunk_tvb, gap_block_offset + SACK_CHUNK_GAP_BLOCK_START_LENGTH);
tsn_start = cum_tsn_ack + start;