mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* DiscImageChef.Decoders/ATA/ATA.cs:
* DiscImageChef.Decoders/ATA/Identify.cs: * DiscImageChef.Decoders/DiscImageChef.Decoders.csproj: Rename fields, methods and structs to more adequate names. * DiscImageChef/Commands/Decode.cs: * DiscImageChef/Commands/DeviceInfo.cs: Rename ATA/ATAPI decoders fields, methods and structs to more adequate names.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2015-10-19 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* Commands/Decode.cs:
|
||||
* Commands/DeviceInfo.cs:
|
||||
Rename ATA/ATAPI decoders fields, methods and structs to
|
||||
more adequate names.
|
||||
|
||||
2015-10-19 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* Commands/Decode.cs:
|
||||
|
||||
@@ -96,7 +96,7 @@ namespace DiscImageChef.Commands
|
||||
{
|
||||
DicConsole.WriteLine("ATA IDENTIFY DEVICE command response:");
|
||||
DicConsole.WriteLine("================================================================================");
|
||||
DicConsole.WriteLine(Decoders.ATA.PrettifyIdentifyDevice(identify));
|
||||
DicConsole.WriteLine(Decoders.ATA.Identify.Prettify(identify));
|
||||
DicConsole.WriteLine("================================================================================");
|
||||
}
|
||||
break;
|
||||
@@ -110,7 +110,7 @@ namespace DiscImageChef.Commands
|
||||
{
|
||||
DicConsole.WriteLine("ATA IDENTIFY PACKET DEVICE command response:");
|
||||
DicConsole.WriteLine("================================================================================");
|
||||
DicConsole.WriteLine(Decoders.ATA.PrettifyIdentifyDevice(identify));
|
||||
DicConsole.WriteLine(Decoders.ATA.Identify.Prettify(identify));
|
||||
DicConsole.WriteLine("================================================================================");
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -116,7 +116,7 @@ namespace DiscImageChef.Commands
|
||||
else
|
||||
{
|
||||
DicConsole.WriteLine("ATAPI OK");
|
||||
DicConsole.WriteLine(Decoders.ATA.PrettifyIdentifyDevice(ataBuf));
|
||||
DicConsole.WriteLine(Decoders.ATA.Identify.Prettify(ataBuf));
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -137,7 +137,7 @@ namespace DiscImageChef.Commands
|
||||
else
|
||||
{
|
||||
DicConsole.WriteLine("ATA OK");
|
||||
DicConsole.WriteLine(Decoders.ATA.PrettifyIdentifyDevice(ataBuf));
|
||||
DicConsole.WriteLine(Decoders.ATA.Identify.Prettify(ataBuf));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user