aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fc.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-20 09:16:09 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-20 09:16:09 +0000
commit7c8d049546a4d53455efdbc19f7c353a4a64f25e (patch)
tree4124a1613f8ef0d37cb1fcffd020ccd9e3c8f68d /epan/dissectors/packet-fc.c
parentd0434a7f55c8b7526ae7fd9067d38c155bac6778 (diff)
rename the fc_exchange_data structure to the more appropriate itlq_nexus_t
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17921 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-fc.c')
-rw-r--r--epan/dissectors/packet-fc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-fc.c b/epan/dissectors/packet-fc.c
index 33c18d20cc..211a99b624 100644
--- a/epan/dissectors/packet-fc.c
+++ b/epan/dissectors/packet-fc.c
@@ -592,7 +592,7 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
gboolean is_ack;
static fc_hdr fchdr;
- fc_exchange_data *fc_ex=NULL;
+ itlq_nexus_t *fc_ex=NULL;
fc_conv_data_t *fc_conv_data=NULL;
conversation_t *conversation;
@@ -668,9 +668,9 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
/* XXX we should come up with a way to handle when the 16bit oxid wraps
* so that large traces will work
*/
- fc_ex=(fc_exchange_data *)se_tree_lookup32(fc_conv_data->exchanges, fchdr.oxid);
+ fc_ex=(itlq_nexus_t *)se_tree_lookup32(fc_conv_data->exchanges, fchdr.oxid);
if(!fc_ex){
- fc_ex=se_alloc(sizeof(fc_exchange_data));
+ fc_ex=se_alloc(sizeof(itlq_nexus_t));
fc_ex->first_exchange_frame=0;
fc_ex->last_exchange_frame=0;
fc_ex->lun=0xffff;