summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-18 16:24:54 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-18 16:24:54 +0000
commitd4180c529f9aa044f2792c8f632be4e8234e66cb (patch)
tree087a4a9fabee12b56b605ed73e6296e1b0e4375d /perl-install/commands.pm
parent816771ca4fac8e9573b43e6f7ab4038b0a411368 (diff)
downloaddrakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar
drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.gz
drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.bz2
drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.xz
drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.zip
fix *old* typo
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r--perl-install/commands.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm
index d5e2fedab..8b0492786 100644
--- a/perl-install/commands.pm
+++ b/perl-install/commands.pm
@@ -71,7 +71,7 @@ sub mount {
" (if /dev/ is left off the device name, a temporary node will be created)\n";
my ($dev, $where) = @_;
- $fs ||= $where =~ /:/ ? "nfs" :
+ $fs ||= $dev =~ /:/ ? "nfs" :
$dev =~ /fd/ ? "vfat" : "ext2";
require fs;