aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-20 09:16:09 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-20 09:16:09 +0000
commita72d39bb05dbed4d052ad7562b83643056810629 (patch)
tree4124a1613f8ef0d37cb1fcffd020ccd9e3c8f68d /epan/dissectors/packet-fc.c
parent83a515b96654d56c7019d3faf1d460f55bebeff2 (diff)
rename the fc_exchange_data structure to the more appropriate itlq_nexus_t
svn path=/trunk/; revision=17921
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;