diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-29 12:33:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-29 12:33:09 +0000 |
commit | a27c82fc4dafe8eb5415ed0546f4db12d0167b02 (patch) | |
tree | b4d5a0e5c1707db4ba0092bd5238fa7b092d7691 /perl-install | |
parent | 3202cc94adcd9df067faf39cb27635409e56bc11 (diff) | |
download | drakx-a27c82fc4dafe8eb5415ed0546f4db12d0167b02.tar drakx-a27c82fc4dafe8eb5415ed0546f4db12d0167b02.tar.gz drakx-a27c82fc4dafe8eb5415ed0546f4db12d0167b02.tar.bz2 drakx-a27c82fc4dafe8eb5415ed0546f4db12d0167b02.tar.xz drakx-a27c82fc4dafe8eb5415ed0546f4db12d0167b02.zip |
any::load_category_no_message() doesn't exist anymore, it really is modules::load_category() !
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakconnect | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index a54775f02..afea1894f 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -30,7 +30,7 @@ use network::tools; use network::modem; use network; use c; -use any; +use modules; use network::isdn; use network::adsl; use MDK::Common::Globals "network", qw($in $prefix $disconnect_file $connect_prog $connect_file $disconnect_file); @@ -64,7 +64,7 @@ require ugtk2; import ugtk2 qw(:helpers :wrappers); my $expert_mode = 0; network::netconnect::read_net_conf('', $netcnx, $netc); -any::load_category_no_message('net', undef); +modules::load_category('net'); my @all_cards = network::ethernet::conf_network_card_backend($netc, $intf, undef, undef, undef, undef); network::netconnect::load_conf($netcnx, $netc, $intf); |