Hi all,
In the PERSISTENT RESERVE IN command the service action is located on offset 0 and not 1.
Patrick
Index: epan/dissectors/packet-scsi.c
===================================================================
--- epan/dissectors/packet-scsi.c (revision 20666)
+++ epan/dissectors/packet-scsi.c (working copy)
@@ -3038,7 +3038,7 @@
"Vendor Unique = %u, NACA = %u, Link = %u",
flags & 0xC0, flags & 0x4, flags & 0x1);
/* We store the service action since we want to interpret the data */
- cdata->itlq->flags = tvb_get_guint8 (tvb, offset+1);
+ cdata->itlq->flags = tvb_get_guint8 (tvb, offset);
}
else {
if (cdata) {