Display the proper partition type 'Extended Partiton' when an extended partition is going to be deleted.

svn path=/trunk/; revision=63396
This commit is contained in:
Eric Kohl 2014-05-21 11:01:17 +00:00
parent 110e942a46
commit be2afdedf6

View file

@ -2137,6 +2137,10 @@ DeletePartitionPage(PINPUT_RECORD Ir)
{
PartType = "NTFS"; /* FIXME: Not quite correct! */
}
else if (IsContainerPartition(PartEntry->PartitionType))
{
PartType = MUIGetString(STRING_EXTENDED_PARTITION);
}
}
PartSize = PartEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector;