aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-06 03:15:16 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-06 03:15:16 +0000
commit4aa5a68788fe3f6732d4f4a822b5ca9d2a968bf4 (patch)
tree2df2f20c75b4e42ecb1b3e84678f72b5d3df4faa /epan/dissectors/packet-fc.c
parent507b3a384fbcb02ab90b1956c2c04c566afa6215 (diff)
use the fc exchange structure to track LUN values from fcp command all the way through to the response
and get rid of the broken hashtable used for the same purpose previously. some additional cleanups. svn path=/trunk/; revision=17827
Diffstat (limited to 'epan/dissectors/packet-fc.c')
-rw-r--r--epan/dissectors/packet-fc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-fc.c b/epan/dissectors/packet-fc.c
index 116007a2fc..274c9254dc 100644
--- a/epan/dissectors/packet-fc.c
+++ b/epan/dissectors/packet-fc.c
@@ -673,6 +673,7 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
fc_ex=se_alloc(sizeof(fc_exchange_data));
fc_ex->first_exchange_frame=0;
fc_ex->last_exchange_frame=0;
+ fc_ex->lun=0xffff;
fc_ex->fc_time=pinfo->fd->abs_ts;
se_tree_insert32(fc_conv_data->exchanges, fchdr.oxid, fc_ex);
}