mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Changed how SFS2 is reported.
This commit is contained in:
@@ -122,9 +122,6 @@ namespace DiscImageChef.Filesystems
|
|||||||
|
|
||||||
StringBuilder sbInformation = new StringBuilder();
|
StringBuilder sbInformation = new StringBuilder();
|
||||||
|
|
||||||
if(rootBlock.blockId == SFS2_MAGIC)
|
|
||||||
sbInformation.AppendLine("SmartFileSystem 2");
|
|
||||||
else
|
|
||||||
sbInformation.AppendLine("SmartFileSystem");
|
sbInformation.AppendLine("SmartFileSystem");
|
||||||
|
|
||||||
sbInformation.AppendFormat("Volume version {0}", rootBlock.version).AppendLine();
|
sbInformation.AppendFormat("Volume version {0}", rootBlock.version).AppendLine();
|
||||||
@@ -147,12 +144,9 @@ namespace DiscImageChef.Filesystems
|
|||||||
CreationDate = DateHandlers.UNIXUnsignedToDateTime(rootBlock.datecreated).AddYears(8),
|
CreationDate = DateHandlers.UNIXUnsignedToDateTime(rootBlock.datecreated).AddYears(8),
|
||||||
CreationDateSpecified = true,
|
CreationDateSpecified = true,
|
||||||
Clusters = rootBlock.totalblocks,
|
Clusters = rootBlock.totalblocks,
|
||||||
ClusterSize = (int)rootBlock.blocksize
|
ClusterSize = (int)rootBlock.blocksize,
|
||||||
|
Type = "SmartFileSystem"
|
||||||
};
|
};
|
||||||
if(rootBlock.blockId == SFS2_MAGIC)
|
|
||||||
xmlFSType.Type = "SmartFileSystem 2";
|
|
||||||
else
|
|
||||||
xmlFSType.Type = "SmartFileSystem";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override Errno Mount()
|
public override Errno Mount()
|
||||||
|
|||||||
Reference in New Issue
Block a user