Petr Gajdos
7c959e6529
* Adding initial i18n support for manpages with po4a. * Renaming tools to sane namespace and keeping legacy symlinks in place. | dosfslabel becomes fatlabel, | dosfsck becomes fsck.fat, | and mkdosfs becomes mkfs.fat. * Correcting spelling typo in boot.c. * dosfslabel: Do not read beyond string length (Closes: #709587). - refreshed both dosfstools-suse-dirs.patch and ppc-reserved-sectors-fix.patch - added dosfstools-system_id-overflow.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/dosfstools?expand=0&rev=40
14 lines
573 B
Diff
14 lines
573 B
Diff
Index: dosfstools-3.0.17/src/mkfs.fat.c
|
|
===================================================================
|
|
--- dosfstools-3.0.17.orig/src/mkfs.fat.c
|
|
+++ dosfstools-3.0.17/src/mkfs.fat.c
|
|
@@ -995,7 +995,7 @@ static void setup_tables(void)
|
|
}
|
|
|
|
/* Adjust the reserved number of sectors for alignment */
|
|
- reserved_sectors = align_object(reserved_sectors, bs.cluster_size);
|
|
+ /* reserved_sectors = align_object(reserved_sectors, bs.cluster_size); */
|
|
bs.reserved = htole16(reserved_sectors);
|
|
|
|
/* Adjust the number of root directory entries to help enforce alignment */
|