summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Chaumette <dchaumette@mandriva.com>2003-05-05 15:22:59 +0000
committerDamien Chaumette <dchaumette@mandriva.com>2003-05-05 15:22:59 +0000
commit6998f75454f84ecb5134d6ddec6015306e1ccb7f (patch)
treea175683ab0656ccfd299aa7baa9b1f2aa0e94f45
parent37ece61f47c429e22a9cdac3efe9527735fe9cc4 (diff)
downloaddrakx-6998f75454f84ecb5134d6ddec6015306e1ccb7f.tar
drakx-6998f75454f84ecb5134d6ddec6015306e1ccb7f.tar.gz
drakx-6998f75454f84ecb5134d6ddec6015306e1ccb7f.tar.bz2
drakx-6998f75454f84ecb5134d6ddec6015306e1ccb7f.tar.xz
drakx-6998f75454f84ecb5134d6ddec6015306e1ccb7f.zip
- change configure and winmodemConfigure args (due to $intf drop)
-rw-r--r--perl-install/network/netconnect.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index a3ad0ab47..702cab87d 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -199,8 +199,8 @@ If you don't want to use the auto detection, deselect the checkbox.
}
) or goto step_1;
load_conf($netcnx, $netc, $intf);
- $conf{modem} and do { pre_func("modem"); require network::modem; network::modem::configure($in, $netcnx, $mouse, $netc, $intf) or goto step_2 };
- $conf{winmodem} and do { pre_func("winmodem"); require network::modem; network::modem::winmodemConfigure($in, $netcnx, $mouse, $netc, $intf) or goto step_2 };
+ $conf{modem} and do { pre_func("modem"); require network::modem; network::modem::configure($in, $netcnx, $mouse, $netc) or goto step_2 };
+ $conf{winmodem} and do { pre_func("winmodem"); require network::modem; network::modem::winmodemConfigure($in, $netcnx, $mouse, $netc) or goto step_2 };
$conf{isdn} and do { pre_func("isdn"); require network::isdn; network::isdn::configure($netcnx, $netc, undef) or goto step_2 };
$conf{adsl} and do { pre_func("adsl"); require network::adsl; network::adsl::configure($netcnx, $netc, $intf, $first_time) or goto step_2 };
$conf{cable} and do { pre_func("cable"); require network::ethernet; network::ethernet::configure_cable($netcnx, $netc, $intf, $first_time) or goto step_2; $netconnect::need_restart_network = 1 };