summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakauth
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-12 12:31:23 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-12 12:31:23 +0000
commit932b873787f546efa2629bc903988b40b04fb919 (patch)
tree1d3c42f85cdaeeef96e4c507fa09a8f1da804a55 /perl-install/standalone/drakauth
parent7639d230b844648b4d4b6d2ed00830c42a46b1e4 (diff)
downloaddrakx-932b873787f546efa2629bc903988b40b04fb919.tar
drakx-932b873787f546efa2629bc903988b40b04fb919.tar.gz
drakx-932b873787f546efa2629bc903988b40b04fb919.tar.bz2
drakx-932b873787f546efa2629bc903988b40b04fb919.tar.xz
drakx-932b873787f546efa2629bc903988b40b04fb919.zip
fix bogus use of old netwok module instead of network::network
Diffstat (limited to 'perl-install/standalone/drakauth')
-rwxr-xr-xperl-install/standalone/drakauth4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth
index 939b57c0c..6f2dfe236 100755
--- a/perl-install/standalone/drakauth
+++ b/perl-install/standalone/drakauth
@@ -7,11 +7,11 @@ use standalone; #- warning, standalone must be loaded very first, for 'expla
use common;
use interactive;
use any;
-use network;
+use network::network;
my $netc = {};
my $intf = {};
-network::read_all_conf('', $netc, $intf);
+read_all_conf('', $netc, $intf);
my $in = 'interactive'->vnew('su');