diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-18 16:24:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-18 16:24:54 +0000 |
commit | d4180c529f9aa044f2792c8f632be4e8234e66cb (patch) | |
tree | 087a4a9fabee12b56b605ed73e6296e1b0e4375d | |
parent | 816771ca4fac8e9573b43e6f7ab4038b0a411368 (diff) | |
download | drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.gz drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.bz2 drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.tar.xz drakx-d4180c529f9aa044f2792c8f632be4e8234e66cb.zip |
fix *old* typo
-rw-r--r-- | perl-install/commands.pm | 2 |
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; |