diff --git a/ChangeLog b/ChangeLog index 95be0c1..63aa2ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2015-10-13 Natalia Portillo + + * SCSI.cs: + Correct size miscalculation. + Do not print "Device claims no standard", generates too much + noise. + 2015-10-05 Natalia Portillo * CD.cs: diff --git a/SCSI.cs b/SCSI.cs index a331baa..39a365e 100644 --- a/SCSI.cs +++ b/SCSI.cs @@ -2493,7 +2493,7 @@ namespace DiscImageChef.Decoders return null; } - if (SCSIInquiryResponse.Length != SCSIInquiryResponse[4] + 4) + if (SCSIInquiryResponse.Length != SCSIInquiryResponse[4] + 5) { //if (MainClass.isDebug) Console.WriteLine("DEBUG (SCSI INQUIRY Decoder): INQUIRY response length ({0} bytes) is different than specified in length field ({1} bytes), decoded data can be incorrect, proceeding anyway.", SCSIInquiryResponse.Length, SCSIInquiryResponse[4] + 4); @@ -2873,7 +2873,7 @@ namespace DiscImageChef.Decoders switch (VersionDescriptor & 0x001F) { case 0x00: - sb.AppendLine("Device claims no standard"); + //sb.AppendLine("Device claims no standard"); break; default: sb.AppendFormat("Device claims unknown version 0x{0:X2} of no standard", VersionDescriptor & 0x001F).AppendLine();