aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcfzs.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-fcfzs.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-fcfzs.c')
-rw-r--r--epan/dissectors/packet-fcfzs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-fcfzs.c b/epan/dissectors/packet-fcfzs.c
index 6af7818ce8..6dba52aeb6 100644
--- a/epan/dissectors/packet-fcfzs.c
+++ b/epan/dissectors/packet-fcfzs.c
@@ -559,7 +559,7 @@ dissect_fcfzs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
fchdr->rxid, NO_PORT2);
}
- ckey.conv_idx = conversation->index;
+ ckey.conv_idx = conversation->conv_index;
cdata = (fcfzs_conv_data_t *)g_hash_table_lookup(fcfzs_req_hash,
&ckey);
@@ -572,7 +572,7 @@ dissect_fcfzs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
}
else {
req_key = wmem_new(wmem_file_scope(), fcfzs_conv_key_t);
- req_key->conv_idx = conversation->index;
+ req_key->conv_idx = conversation->conv_index;
cdata = wmem_new(wmem_file_scope(), fcfzs_conv_data_t);
cdata->opcode = opcode;
@@ -601,7 +601,7 @@ dissect_fcfzs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
}
}
else {
- ckey.conv_idx = conversation->index;
+ ckey.conv_idx = conversation->conv_index;
cdata = (fcfzs_conv_data_t *)g_hash_table_lookup(fcfzs_req_hash, &ckey);