diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-02 04:23:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-02 04:23:24 +0000 |
commit | f7c6029547ec9e0864ee040f32cb3b4c0af82c62 (patch) | |
tree | 597c6298be7d6cf375d7a9fb3cde185a92e7ce48 /perl-install | |
parent | 98f46c21011e38e3391592f219b955bc4526180d (diff) | |
download | drakx-f7c6029547ec9e0864ee040f32cb3b4c0af82c62.tar drakx-f7c6029547ec9e0864ee040f32cb3b4c0af82c62.tar.gz drakx-f7c6029547ec9e0864ee040f32cb3b4c0af82c62.tar.bz2 drakx-f7c6029547ec9e0864ee040f32cb3b4c0af82c62.tar.xz drakx-f7c6029547ec9e0864ee040f32cb3b4c0af82c62.zip |
(network_conf) rename o as obj so that pixel isn't confused
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/harddrake/autoconf.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm index 8384cb33b..b438f2477 100644 --- a/perl-install/harddrake/autoconf.pm +++ b/perl-install/harddrake/autoconf.pm @@ -19,9 +19,9 @@ sub xconf { } sub network_conf { - my ($o) = @_; + my ($obj) = @_; require network::network; - network::network::easy_dhcp($o->{modules_conf}, $o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; + network::network::easy_dhcp($obj->{modules_conf}, $obj->{netc}, $obj->{intf}) and $obj->{netcnx}{type} = 'lan'; } 1; |