Populate system identifier.

This commit is contained in:
2017-07-05 06:55:01 +01:00
parent 857eceef2d
commit ec7b077327

View File

@@ -427,6 +427,7 @@ namespace DiscImageChef.Filesystems
xmlFSType.FilesSpecified = true; xmlFSType.FilesSpecified = true;
xmlFSType.VolumeName = StringHandlers.DecompressUnicode(lvd.logicalVolumeIdentifier); xmlFSType.VolumeName = StringHandlers.DecompressUnicode(lvd.logicalVolumeIdentifier);
xmlFSType.VolumeSetIdentifier = StringHandlers.DecompressUnicode(pvd.volumeSetIdentifier); xmlFSType.VolumeSetIdentifier = StringHandlers.DecompressUnicode(pvd.volumeSetIdentifier);
xmlFSType.SystemIdentifier = CurrentEncoding.GetString(pvd.implementationIdentifier.identifier).TrimEnd(new char[] { '\u0000' });
information = sbInformation.ToString(); information = sbInformation.ToString();
} }