aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-01-30 19:43:29 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-01-30 19:43:29 +0000
commit7829b4965b88bdb5a7af4a9246a886344f035a3c (patch)
tree3e88fd6679e331662fc8c0b9b50b0c4169dc818b /epan/dissectors/packet-scsi.c
parent345de1042bc7cd4edf191056bdda5c5ec67824c7 (diff)
From Patrick vd Lageweg:
The PERSISTENT REVERVE OUT dissectors uses the table of the PERSISTENT REVERVE IN command to decode the Service Action field which is obviously not correct. This patch fixes the problem. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20631 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-scsi.c')
-rw-r--r--epan/dissectors/packet-scsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-scsi.c b/epan/dissectors/packet-scsi.c
index efe16a8134..abfe3a77ec 100644
--- a/epan/dissectors/packet-scsi.c
+++ b/epan/dissectors/packet-scsi.c
@@ -3090,7 +3090,7 @@ dissect_spc3_persistentreserveout (tvbuff_t *tvb, packet_info *pinfo _U_, proto_
return;
if (isreq && iscdb) {
- proto_tree_add_item (tree, hf_scsi_persresvin_svcaction, tvb, offset,
+ proto_tree_add_item (tree, hf_scsi_persresvout_svcaction, tvb, offset,
1, 0);
proto_tree_add_item (tree, hf_scsi_persresv_scope, tvb, offset+1, 1, 0);
proto_tree_add_item (tree, hf_scsi_persresv_type, tvb, offset+1, 1, 0);