summaryrefslogtreecommitdiff
path: root/libparted
diff options
context:
space:
mode:
authorPhillip Susi <psusi@ubuntu.com>2018-05-04 10:57:56 -0400
committerPhillip Susi <psusi@ubuntu.com>2018-06-05 10:58:12 -0400
commit4347ddb8e2dd01674c759e94eaaf5872915a2e48 (patch)
treea6cebd2757ebe4978fe605d2b7d9e2056e7ece9c /libparted
parentb49388018931cab220b9dd50f3a2bd51401e48af (diff)
downloadparted-4347ddb8e2dd01674c759e94eaaf5872915a2e48.tar.gz
Lift 512 byte restriction on fat resize
As Colin Watson pointed out way back in 2014, when I removed the 512 byte sector size restriction from the fs recognition code, I missed the same from the fat resize code.
Diffstat (limited to 'libparted')
-rw-r--r--libparted/fs/r/fat/bootsector.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libparted/fs/r/fat/bootsector.c b/libparted/fs/r/fat/bootsector.c
index 99d788d..3e34e13 100644
--- a/libparted/fs/r/fat/bootsector.c
+++ b/libparted/fs/r/fat/bootsector.c
@@ -125,18 +125,6 @@ fat_boot_sector_analyse (FatBootSector* bs, PedFileSystem* fs)
PED_ASSERT (bs != NULL);
- if (PED_LE16_TO_CPU (bs->sector_size) != 512) {
- if (ped_exception_throw (
- PED_EXCEPTION_BUG,
- PED_EXCEPTION_IGNORE_CANCEL,
- _("This file system has a logical sector size of %d. "
- "GNU Parted is known not to work properly with sector "
- "sizes other than 512 bytes."),
- (int) PED_LE16_TO_CPU (bs->sector_size))
- != PED_EXCEPTION_IGNORE)
- return 0;
- }
-
fs_info->logical_sector_size = PED_LE16_TO_CPU (bs->sector_size) / 512;
fs_info->sectors_per_track = PED_LE16_TO_CPU (bs->secs_track);