diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 12:49:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 12:49:17 +0000 |
commit | 1275f71751148da1433ab6cc0c69124fb3d05baa (patch) | |
tree | fa1bfe30068c7db1964b9aa7aefc2cf7fac5a8f2 /perl-install/standalone/drakconnect | |
parent | 2d85f131e1ec9181038692493bb9daca277edb45 (diff) | |
download | drakx-1275f71751148da1433ab6cc0c69124fb3d05baa.tar drakx-1275f71751148da1433ab6cc0c69124fb3d05baa.tar.gz drakx-1275f71751148da1433ab6cc0c69124fb3d05baa.tar.bz2 drakx-1275f71751148da1433ab6cc0c69124fb3d05baa.tar.xz drakx-1275f71751148da1433ab6cc0c69124fb3d05baa.zip |
don't pass prefix to network::netconnect::main() (it doesn't use it)
Diffstat (limited to 'perl-install/standalone/drakconnect')
-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 dc9f96c91..bb45f2336 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -136,7 +136,7 @@ $window1->{window}->add( clicked => sub { local ($::isWizard, $::Wizard_finished) = (1, 1); eval { # For wizcancel - network::netconnect::main('', $netcnx, $in, $modules_conf, $netc, undef, $intf); + network::netconnect::main($netcnx, $in, $modules_conf, $netc, undef, $intf); $button_apply->set_sensitive(1); update(); }; @@ -660,7 +660,7 @@ sub check_field { sub add_intf() { $::isWizard = 1; - network::netconnect::main('', $netcnx, $in, $modules_conf, $netc, undef, $intf); + network::netconnect::main($netcnx, $in, $modules_conf, $netc, undef, $intf); $in->exit(0); } |