summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-09-04 20:44:55 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-09-04 20:44:55 +0000
commit89eda7dc3c88bb8bf955a4451c95f5058048368f (patch)
treec091c11c0da9c7ae2cf203dce6b3af1037666b9d /perl-install/fs.pm
parent31d0cbfd0d64d2415f5cd88c75d7cc026119bad4 (diff)
downloaddrakx-backup-do-not-use-89eda7dc3c88bb8bf955a4451c95f5058048368f.tar
drakx-backup-do-not-use-89eda7dc3c88bb8bf955a4451c95f5058048368f.tar.gz
drakx-backup-do-not-use-89eda7dc3c88bb8bf955a4451c95f5058048368f.tar.bz2
drakx-backup-do-not-use-89eda7dc3c88bb8bf955a4451c95f5058048368f.tar.xz
drakx-backup-do-not-use-89eda7dc3c88bb8bf955a4451c95f5058048368f.zip
fix typo
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index c919c574c..b8f33b7ed 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -585,7 +585,7 @@ sub mount {
syscall_('mount', $dev, $where, $fs, $flag, $mount_opt) or die _("mount failed: ") . "$!";
syscall_('umount', $where);
# really mount as ext2 during install for speed up
- $type = 'ext2';
+ $fs = 'ext2';
}
log::l("calling mount($dev, $where, $fs, $flag, $mount_opt)");
syscall_('mount', $dev, $where, $fs, $flag, $mount_opt) or die _("mount failed: ") . "$!";