mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* FileSystemIDandChk/Main.cs:
partitionOffset should be the sector, not the byte * FileSystemIDandChk/PartPlugins/MBR.cs: Corrected typos on field offsets * FileSystemIDandChk/Plugins/FAT.cs: * FileSystemIDandChk/Plugins/ISO9660.cs: Corrected typo * FileSystemIDandChk/Plugins/ext2FS.cs: Superblock block_size is shift of base block size (1024 bytes)
This commit is contained in:
@@ -287,7 +287,7 @@ namespace FileSystemIDandChk.Plugins
|
||||
sb.AppendFormat("{0} sectors per cluster.", BPB.spc).AppendLine();
|
||||
sb.AppendFormat("{0} sectors reserved between BPB and FAT.", BPB.rsectors).AppendLine();
|
||||
sb.AppendFormat("{0} FATs.", BPB.fats_no).AppendLine();
|
||||
sb.AppendFormat("{0} entires on root directory.", BPB.root_ent).AppendLine();
|
||||
sb.AppendFormat("{0} entries on root directory.", BPB.root_ent).AppendLine();
|
||||
if (BPB.sectors == 0)
|
||||
sb.AppendFormat("{0} sectors on volume ({1} bytes).", BPB.big_sectors, BPB.big_sectors * BPB.bps).AppendLine();
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user