From fed6ecad336287a4f53ce41bbf40b6eda2adbf61 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 25 Jul 2017 03:27:58 +0100 Subject: [PATCH] Corrected type and name of minix subpartitions. --- DiscImageChef.Partitions/MBR.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscImageChef.Partitions/MBR.cs b/DiscImageChef.Partitions/MBR.cs index acdad5158..341a82ca5 100644 --- a/DiscImageChef.Partitions/MBR.cs +++ b/DiscImageChef.Partitions/MBR.cs @@ -378,8 +378,8 @@ namespace DiscImageChef.PartPlugins if(mnx_valid) { any_mnx = true; - part.Type = string.Format("0x{0:X2}", mnx_entry.type); - part.Name = DecodeMBRType(mnx_entry.type); + part.Type = "MINIX"; + part.Name = "MINIX"; part.Description = mnx_entry.status == 0x80 ? "Partition is bootable." : ""; part.Scheme = "MINIX";