summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-fcp.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-24 08:16:18 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-24 08:16:18 +0000
commitacbaf3fe1f6b01d2cc1ba133c8d62228939fbaca (patch)
treea5edf4b3a5f73a34b8894d5f47285b35ebf02308 /epan/dissectors/packet-fcp.c
parent47bb33f1cb28e6f4c6d68f8cbfb07094390806a9 (diff)
downloadwireshark-acbaf3fe1f6b01d2cc1ba133c8d62228939fbaca.tar.gz
change the signature for dissect_scsi_snsinfo() to take itlq and itl structures
update the comment in packet-scsi.c to reflect that it is the transport now that is responsible to track itl and itlq data make scsi tapable svn path=/trunk/; revision=17974
Diffstat (limited to 'epan/dissectors/packet-fcp.c')
-rw-r--r--epan/dissectors/packet-fcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-fcp.c b/epan/dissectors/packet-fcp.c
index 8e169a5883..236d4e9822 100644
--- a/epan/dissectors/packet-fcp.c
+++ b/epan/dissectors/packet-fcp.c
@@ -559,7 +559,7 @@ dissect_fcp_rsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, prot
sns_tvb=tvb_new_subset(tvb, offset, MIN(snslen, tvb_length_remaining(tvb, offset)), snslen);
dissect_scsi_snsinfo (sns_tvb, pinfo, parent_tree, 0,
snslen,
- fchdr->itlq->lun);
+ fchdr->itlq, itl);
offset+=snslen;
}