aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi-osd.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-09 08:31:04 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-09 08:31:04 +0000
commit66c80b57e7d5c85d23e3a5dc99e46572c06ea38c (patch)
treec45aeae865d10fc971fce332d0e0f4306e3d4d66 /epan/dissectors/packet-scsi-osd.c
parentf33dd7d5b143cf6262c4ddb6c18b905e76b04ae3 (diff)
from Joe Breher
This patch fixes a transposition of the orders of Set Attribute Number Set Attribute Length In the page oriented get and set attributes CDB parameters format Ref SCSI-OSD T10/1355-D Revision 10 section 5.2.2.2 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19460 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-scsi-osd.c')
-rw-r--r--epan/dissectors/packet-scsi-osd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-scsi-osd.c b/epan/dissectors/packet-scsi-osd.c
index 6f268fc670..86b770aec6 100644
--- a/epan/dissectors/packet-scsi-osd.c
+++ b/epan/dissectors/packet-scsi-osd.c
@@ -220,10 +220,10 @@ dissect_osd_attribute_parameters(tvbuff_t *tvb, int offset, proto_tree *parent_t
offset+=4;
proto_tree_add_item(tree, hf_scsi_osd_set_attributes_page, tvb, offset, 4, 0);
offset+=4;
- proto_tree_add_item(tree, hf_scsi_osd_set_attribute_length, tvb, offset, 4, 0);
- offset+=4;
proto_tree_add_item(tree, hf_scsi_osd_set_attribute_number, tvb, offset, 4, 0);
offset+=4;
+ proto_tree_add_item(tree, hf_scsi_osd_set_attribute_length, tvb, offset, 4, 0);
+ offset+=4;
proto_tree_add_item(tree, hf_scsi_osd_set_attributes_offset, tvb, offset, 4, 0);
offset+=4;
break;