From: Jim Meyering Date: Thu, 3 Dec 2009 09:58:31 +0000 (+0100) Subject: mac: hook up the partition_check function for this partition table type X-Git-Tag: android-x86-4.4-r1~496 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2b7ed13adab1fff6fc4e945b5dc9f96ace44c99f;p=android-x86%2Fexternal-parted.git mac: hook up the partition_check function for this partition table type * libparted/labels/pt-tools.c (ptt_partition_max_start_len): Define for MAC partition tables. They too have 32-bit-limited partition starting sector number and partition length (in sectors). * libparted/labels/mac.c (mac_partition_check): Use ptt_partition_max_start_len. --- diff --git a/libparted/labels/mac.c b/libparted/labels/mac.c index 561ca5f..319adcc 100644 --- a/libparted/labels/mac.c +++ b/libparted/labels/mac.c @@ -1628,7 +1628,7 @@ mac_get_max_supported_partition_count (const PedDisk* disk, int *max_n) static bool mac_partition_check (const PedPartition* part) { - return true; + return ptt_partition_max_start_len ("mac", part); } static PedDiskOps mac_disk_ops = { diff --git a/libparted/labels/pt-tools.c b/libparted/labels/pt-tools.c index 8afec77..48c9384 100644 --- a/libparted/labels/pt-tools.c +++ b/libparted/labels/pt-tools.c @@ -98,7 +98,7 @@ ptt_clear_sectors (PedDevice *dev, PedSector start, PedSector n) int ptt_partition_max_start_len (char const *label_type, const PedPartition *part) { - static char const *const max_32[] = {"msdos", "dvh", "dasd"}; + static char const *const max_32[] = {"msdos", "dvh", "dasd", "mac"}; unsigned int i; for (i = 0; i < sizeof max_32 / sizeof *max_32; i++)