Corrected typo on SCSI peripheral device types.

This commit is contained in:
2017-12-15 01:14:28 +00:00
parent 89234befb3
commit 10054f1de2
4 changed files with 4 additions and 4 deletions

View File

@@ -1177,7 +1177,7 @@ namespace DiscImageChef.Decoders.SCSI
sb.AppendLine("SCSI Extended INQUIRY Data:"); sb.AppendLine("SCSI Extended INQUIRY Data:");
if(page.PeripheralDeviceType == PeripheralDeviceTypes.DirectAccess || if(page.PeripheralDeviceType == PeripheralDeviceTypes.DirectAccess ||
page.PeripheralDeviceType == PeripheralDeviceTypes.SCSIZonedBlockDEvice) page.PeripheralDeviceType == PeripheralDeviceTypes.SCSIZonedBlockDevice)
{ {
switch(page.SPT) switch(page.SPT)
{ {

View File

@@ -141,7 +141,7 @@ namespace DiscImageChef.Decoders.SCSI
/// <summary> /// <summary>
/// Host managed zoned block device /// Host managed zoned block device
/// </summary> /// </summary>
SCSIZonedBlockDEvice = 0x14, SCSIZonedBlockDevice = 0x14,
/// <summary> /// <summary>
/// Well known logical unit /// Well known logical unit
/// </summary> /// </summary>

View File

@@ -355,7 +355,7 @@ namespace DiscImageChef.Decoders.SCSI
case PeripheralDeviceTypes.SCSISecurityManagerDevice: //0x13, case PeripheralDeviceTypes.SCSISecurityManagerDevice: //0x13,
sb.AppendLine("Security Manager Device"); sb.AppendLine("Security Manager Device");
break; break;
case PeripheralDeviceTypes.SCSIZonedBlockDEvice: //0x14 case PeripheralDeviceTypes.SCSIZonedBlockDevice: //0x14
sb.AppendLine("Host managed zoned block device"); sb.AppendLine("Host managed zoned block device");
break; break;
case PeripheralDeviceTypes.WellKnownDevice: //0x1E, case PeripheralDeviceTypes.WellKnownDevice: //0x1E,

View File

@@ -128,7 +128,7 @@ namespace DiscImageChef.Server.App_Start
case PeripheralDeviceTypes.SCSISecurityManagerDevice: //0x13, case PeripheralDeviceTypes.SCSISecurityManagerDevice: //0x13,
scsiOneValue.Add("Security Manager Device"); scsiOneValue.Add("Security Manager Device");
break; break;
case PeripheralDeviceTypes.SCSIZonedBlockDEvice: //0x14 case PeripheralDeviceTypes.SCSIZonedBlockDevice: //0x14
scsiOneValue.Add("Host managed zoned block device"); scsiOneValue.Add("Host managed zoned block device");
break; break;
case PeripheralDeviceTypes.WellKnownDevice: //0x1E, case PeripheralDeviceTypes.WellKnownDevice: //0x1E,