summaryrefslogtreecommitdiffstats
path: root/perl-install/resize_fat/boot_sector.pm
diff options
context:
space:
mode:
authorAhmad Samir <ahmad@mageia.org>2011-04-04 19:41:44 +0000
committerAhmad Samir <ahmad@mageia.org>2011-04-04 19:41:44 +0000
commit2b8dce754e3324cc820a8526e0783e8c2846482d (patch)
treedc5cd6117d881efd56615007fd2e98bceffd2449 /perl-install/resize_fat/boot_sector.pm
parent6e803f724152b7850c23f01b14e6cc975e55ef77 (diff)
downloaddrakx-backup-do-not-use-2b8dce754e3324cc820a8526e0783e8c2846482d.tar
drakx-backup-do-not-use-2b8dce754e3324cc820a8526e0783e8c2846482d.tar.gz
drakx-backup-do-not-use-2b8dce754e3324cc820a8526e0783e8c2846482d.tar.bz2
drakx-backup-do-not-use-2b8dce754e3324cc820a8526e0783e8c2846482d.tar.xz
drakx-backup-do-not-use-2b8dce754e3324cc820a8526e0783e8c2846482d.zip
String changes: perl -pi -e 's!file system!filesystem!'
Diffstat (limited to 'perl-install/resize_fat/boot_sector.pm')
-rw-r--r--perl-install/resize_fat/boot_sector.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/resize_fat/boot_sector.pm b/perl-install/resize_fat/boot_sector.pm
index 5e1f75a12..8496166a4 100644
--- a/perl-install/resize_fat/boot_sector.pm
+++ b/perl-install/resize_fat/boot_sector.pm
@@ -57,7 +57,7 @@ sub read($) {
$fs->{cluster_size} = $fs->{cluster_size_in_sectors} * $fs->{sector_size};
$fs->{boot_sign} == 0xAA55 or die "Invalid signature for a MS-based filesystem.\n";
- $fs->{nb_sectors} < 32 and die "Too few sectors for viable file system\n";
+ $fs->{nb_sectors} < 32 and die "Too few sectors for viable filesystem\n";
$fs->{nb_fats} == 2 or cdie "Weird number of FATs: $fs->{nb_fats}, not 2.\n";
$fs->{sector_size} == 512 or cdie "Strange sector_size != 512\n";