Changed order of LBA48 commands in Linux.

This commit is contained in:
2017-12-13 00:31:32 +00:00
parent 45f6a56479
commit 49ca94c33e

View File

@@ -269,8 +269,8 @@ namespace DiscImageChef.Devices.Linux
byte[] cdb = new byte[16];
cdb[0] = (byte)ScsiCommands.AtaPassThrough16;
cdb[1] |= 0x01;
cdb[1] = (byte)(((byte)protocol << 1) & 0x1E);
cdb[1] |= 0x01;
if(transferRegister != AtaTransferRegister.NoTransfer &&
protocol != AtaProtocol.NonData)
{