From 7317125c334a6918981851736b197d00a4b65774 Mon Sep 17 00:00:00 2001 From: Stephen Fisher Date: Tue, 30 Jan 2007 19:43:29 +0000 Subject: [PATCH] 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. svn path=/trunk/; revision=20631 --- epan/dissectors/packet-scsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);