summaryrefslogtreecommitdiffstats
path: root/perl-install/network/tools.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-08-24 01:13:45 +0000
committerdamien <damien@mandriva.com>2001-08-24 01:13:45 +0000
commit08b9c98f8885c81df34e3c527de33164a50006e7 (patch)
tree41b714464cb319c0dc1bad0dc882ed4620b4d0c4 /perl-install/network/tools.pm
parentc6d1d30e6bec3c43f617427e0029dcc8fb0b67fe (diff)
downloaddrakx-08b9c98f8885c81df34e3c527de33164a50006e7.tar
drakx-08b9c98f8885c81df34e3c527de33164a50006e7.tar.gz
drakx-08b9c98f8885c81df34e3c527de33164a50006e7.tar.bz2
drakx-08b9c98f8885c81df34e3c527de33164a50006e7.tar.xz
drakx-08b9c98f8885c81df34e3c527de33164a50006e7.zip
speedtouch configuration
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r--perl-install/network/tools.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm
index b8a043204..10f362a46 100644
--- a/perl-install/network/tools.pm
+++ b/perl-install/network/tools.pm
@@ -81,7 +81,7 @@ sub ask_info2 {
if__($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }),
if__($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }),
if__($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }),
- if__($netc->{vcivpi}, { label => _("Choose your country"), val => \$netc->{vcivpi}, list => ['Netherlands', 'France', 'Belgium', 'Italy', 'UK'] }),
+ if__($netc->{vpivci}, { label => _("Choose your country"), val => \$netc->{vpivci}, list => ['Netherlands', 'France', 'Belgium', 'Italy', 'UK'] }),
if__($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}),
if__($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}),
if__($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }),
@@ -89,9 +89,9 @@ sub ask_info2 {
if__($cnx->{passwd}, { label => _("Account Password"), val => \$cnx->{passwd} }),
]
) or return;
- if ($netc->{vcivpi}) {
+ if ($netc->{vpivci}) {
foreach (['Netherlands', 8.48], ['France', 8.35], ['Belgium', 8.35], ['Italy', 8.35], ['UK', 0.38]) {
- $netc->{vcivpi} eq $_->[0] and $netc->{vcivpi} = $_->[1] ;
+ $netc->{vpivci} eq $_->[0] and $netc->{vpivci} = $_->[1] ;
}
}
1;