mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Correct typo in DC42 tag checksumming.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2015-03-05 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* ImagePlugins/DiskCopy42.cs:
|
||||||
|
Correct typo in DC42 tag checksumming.
|
||||||
|
|
||||||
2015-02-02 Natalia Portillo <claunia@claunia.com>
|
2015-02-02 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Checksums/CRC64Context.cs:
|
* Checksums/CRC64Context.cs:
|
||||||
|
|||||||
@@ -424,12 +424,12 @@ namespace DiscImageChef.ImagePlugins
|
|||||||
tagstream.Close();
|
tagstream.Close();
|
||||||
|
|
||||||
if (MainClass.isDebug)
|
if (MainClass.isDebug)
|
||||||
Console.WriteLine("DEBUG (DC42 plugin): Calculating data checksum");
|
Console.WriteLine("DEBUG (DC42 plugin): Calculating tag checksum");
|
||||||
tagsChk = DC42CheckSum(data);
|
tagsChk = DC42CheckSum(tags);
|
||||||
if (MainClass.isDebug)
|
if (MainClass.isDebug)
|
||||||
{
|
{
|
||||||
Console.WriteLine("DEBUG (DC42 plugin): Calculated data checksum = 0x{0:X8}", tagsChk);
|
Console.WriteLine("DEBUG (DC42 plugin): Calculated tag checksum = 0x{0:X8}", tagsChk);
|
||||||
Console.WriteLine("DEBUG (DC42 plugin): Stored data checksum = 0x{0:X8}", header.tagChecksum);
|
Console.WriteLine("DEBUG (DC42 plugin): Stored tag checksum = 0x{0:X8}", header.tagChecksum);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user