aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcswils.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-fcswils.c')
-rw-r--r--epan/dissectors/packet-fcswils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-fcswils.c b/epan/dissectors/packet-fcswils.c
index be15c3ea5b..0e4e43aa19 100644
--- a/epan/dissectors/packet-fcswils.c
+++ b/epan/dissectors/packet-fcswils.c
@@ -1722,7 +1722,7 @@ dissect_fcswils(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 = (fcswils_conv_data_t *)g_hash_table_lookup(fcswils_req_hash,
&ckey);
@@ -1735,7 +1735,7 @@ dissect_fcswils(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
}
else {
req_key = wmem_new(wmem_file_scope(), fcswils_conv_key_t);
- req_key->conv_idx = conversation->index;
+ req_key->conv_idx = conversation->conv_index;
cdata = wmem_new(wmem_file_scope(), fcswils_conv_data_t);
cdata->opcode = opcode;
@@ -1757,7 +1757,7 @@ dissect_fcswils(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
}
}
else {
- ckey.conv_idx = conversation->index;
+ ckey.conv_idx = conversation->conv_index;
cdata = (fcswils_conv_data_t *)g_hash_table_lookup(fcswils_req_hash, &ckey);