mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Decoders.SCSI] Fix SCSI SENSE not being decoded if VALID bit set. Fixes #824
This commit is contained in:
@@ -227,7 +227,7 @@ public static class Sense
|
|||||||
{
|
{
|
||||||
var decoded = new DecodedSense();
|
var decoded = new DecodedSense();
|
||||||
|
|
||||||
switch(sense[0])
|
switch(sense[0] & 0x7F)
|
||||||
{
|
{
|
||||||
case 0x70:
|
case 0x70:
|
||||||
case 0x71:
|
case 0x71:
|
||||||
|
|||||||
Reference in New Issue
Block a user