diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-21 00:09:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-21 00:09:09 +0000 |
commit | 54b71cdf438434e4693aa6064596f4fdb4aac59e (patch) | |
tree | 50ece69f31e845c9a9f24db7218635b203d632bd /perl-install/standalone/drakpxe | |
parent | ad0731569eec0d8b5ebe7fb11083edd981c76921 (diff) | |
download | drakx-54b71cdf438434e4693aa6064596f4fdb4aac59e.tar drakx-54b71cdf438434e4693aa6064596f4fdb4aac59e.tar.gz drakx-54b71cdf438434e4693aa6064596f4fdb4aac59e.tar.bz2 drakx-54b71cdf438434e4693aa6064596f4fdb4aac59e.tar.xz drakx-54b71cdf438434e4693aa6064596f4fdb4aac59e.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/standalone/drakpxe')
-rwxr-xr-x | perl-install/standalone/drakpxe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakpxe b/perl-install/standalone/drakpxe index 97b5a3e07..94640b458 100755 --- a/perl-install/standalone/drakpxe +++ b/perl-install/standalone/drakpxe @@ -170,7 +170,7 @@ $in->ask_from('DHCP Server Configuration', The network address is %s using a netmask of %s. -", @{$intf[0]}{qw(NETWORK NETMASK)}), [ { label => N("The DHCP start ip"), val => \$start_ip, type => 'entry' }, +", $intf[0]{NETWORK}, $intf[0]{NETMASK}), [ { label => N("The DHCP start ip"), val => \$start_ip, type => 'entry' }, { label => N("The DHCP end ip"), val => \$end_ip, type => 'entry' }, ]) or goto begin; |