aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fc.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-06-23 17:51:41 +0200
committerAnders Broman <a.broman58@gmail.com>2016-06-26 06:03:14 +0000
commitf8500f39e29b001d609c01f7c265d6458d7f2b15 (patch)
tree7fd2593a2f911238bd05cd7140a111fc0e2fe657 /epan/dissectors/packet-fc.c
parent46fc6f5d397219889a1355da09573dfbc7d800ac (diff)
conversation: rename shadow variable
Change-Id: I8f738b2e01d7f448b21cdc1b488b16b7dd581911 Reviewed-on: https://code.wireshark.org/review/16104 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-fc.c')
-rw-r--r--epan/dissectors/packet-fc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-fc.c b/epan/dissectors/packet-fc.c
index a7fd8eb294..839b667e3b 100644
--- a/epan/dissectors/packet-fc.c
+++ b/epan/dissectors/packet-fc.c
@@ -1073,7 +1073,7 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
* SEQ_CNT of the first frame in sequence and use this value to
* determine the actual offset into a frame.
*/
- ckey.conv_idx = conversation->index;
+ ckey.conv_idx = conversation->conv_index;
cdata = (fcseq_conv_data_t *)g_hash_table_lookup (fcseq_req_hash,
&ckey);
@@ -1088,7 +1088,7 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
}
else {
req_key = wmem_new(wmem_file_scope(), fcseq_conv_key_t);
- req_key->conv_idx = conversation->index;
+ req_key->conv_idx = conversation->conv_index;
cdata = wmem_new(wmem_file_scope(), fcseq_conv_data_t);
cdata->seq_cnt = fchdr->seqcnt;