summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2003-03-12 15:09:41 +0000
committerFrancois Pons <fpons@mandriva.com>2003-03-12 15:09:41 +0000
commit98d402947408e133ff5134acd75930a03c0ecb53 (patch)
treef4c04c612616845fa9ab3bd38fd26678025943fa
parentdd1cceecae4bd91306c90a35c5d1f959e7d77e88 (diff)
downloaddrakx-backup-do-not-use-98d402947408e133ff5134acd75930a03c0ecb53.tar
drakx-backup-do-not-use-98d402947408e133ff5134acd75930a03c0ecb53.tar.gz
drakx-backup-do-not-use-98d402947408e133ff5134acd75930a03c0ecb53.tar.bz2
drakx-backup-do-not-use-98d402947408e133ff5134acd75930a03c0ecb53.tar.xz
drakx-backup-do-not-use-98d402947408e133ff5134acd75930a03c0ecb53.zip
fixed typo.
-rw-r--r--perl-install/network/modem.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/modem.pm b/perl-install/network/modem.pm
index 0dd859836..6c26a7213 100644
--- a/perl-install/network/modem.pm
+++ b/perl-install/network/modem.pm
@@ -263,7 +263,7 @@ sub winmodemConfigure {
$type || $in->ask_warn(N("Warning"), N("Your modem isn't supported by the system.
Take a look at http://www.linmodems.org")) && return 1;
my $e = $in->ask_from_list(N("Title"), N("\"%s\" based winmodem detected, do you want to install needed software ?", $type), [N("Install rpm"), N("Do nothing")]) or return 0;
- $e =~ /rpm/ ? $in->do_pkgs->install($relocations{$type} ? @{$relocations{type}} : $type) : return 1;
+ $e =~ /rpm/ ? $in->do_pkgs->install($relocations{$type} ? @{$relocations{$type}} : $type) : return 1;
1;
}