diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-01-03 15:41:30 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-01-03 15:41:30 +0000 |
commit | c2dda5abbae0ef821d2d8c93e2cf90972279f1f8 (patch) | |
tree | d309965399fedd8fdd6c09c6a74e8d21ba98a7ac /perl-install/standalone/drakgw | |
parent | be98e2d67ccfcb58c1c114bf6054b8dcb00250b0 (diff) | |
download | drakx-c2dda5abbae0ef821d2d8c93e2cf90972279f1f8.tar drakx-c2dda5abbae0ef821d2d8c93e2cf90972279f1f8.tar.gz drakx-c2dda5abbae0ef821d2d8c93e2cf90972279f1f8.tar.bz2 drakx-c2dda5abbae0ef821d2d8c93e2cf90972279f1f8.tar.xz drakx-c2dda5abbae0ef821d2d8c93e2cf90972279f1f8.zip |
don't have a useless empty hash in wizards objects, use the wizards hash
Diffstat (limited to 'perl-install/standalone/drakgw')
-rwxr-xr-x | perl-install/standalone/drakgw | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 2eda7db6d..78f0b1c37 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -68,8 +68,8 @@ my $resolv_conf = network::network::read_resolv_conf_raw(); my $squid_conf = network::squid::read_squid_conf(); my $dhcpd_conf = network::dhcpd::read_dhcpd_conf(); -my $wiz; -$wiz = +require wizards; +my $wiz = wizards->new( { defaultimage => "drakgw.png", name => N("Internet Connection Sharing"), @@ -332,9 +332,8 @@ You may now share Internet connection with other computers on your Local Area Ne end => 1, }, }, -}; -require wizards; -wizards->new->safe_process($wiz, $in); +}); +$wiz->safe_process($in); |