summaryrefslogtreecommitdiffstats
path: root/perl-install/network/network.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-02-10 08:01:17 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-02-10 08:01:17 +0000
commit46f20609a6bf1a2ccd68b456495b7fc2d444ac19 (patch)
treeec47482e81603f529b152f3166e2604bb14039eb /perl-install/network/network.pm
parente3b29076da96ad0fc42f29909648ee2582323e67 (diff)
downloaddrakx-backup-do-not-use-46f20609a6bf1a2ccd68b456495b7fc2d444ac19.tar
drakx-backup-do-not-use-46f20609a6bf1a2ccd68b456495b7fc2d444ac19.tar.gz
drakx-backup-do-not-use-46f20609a6bf1a2ccd68b456495b7fc2d444ac19.tar.bz2
drakx-backup-do-not-use-46f20609a6bf1a2ccd68b456495b7fc2d444ac19.tar.xz
drakx-backup-do-not-use-46f20609a6bf1a2ccd68b456495b7fc2d444ac19.zip
perl_checker fixes
Diffstat (limited to 'perl-install/network/network.pm')
-rw-r--r--perl-install/network/network.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
index 17fd4cf9e..02f96761b 100644
--- a/perl-install/network/network.pm
+++ b/perl-install/network/network.pm
@@ -51,7 +51,7 @@ sub read_tmdns_conf {
my %outf;
while (<F>) {
- ($outf{ZEROCONF_HOSTNAME}, ) = /^\s*hostname\s*=\s*(\w+)/ and return \%outf;
+ ($outf{ZEROCONF_HOSTNAME}) = /^\s*hostname\s*=\s*(\w+)/ and return \%outf;
}
\%outf;
@@ -351,7 +351,7 @@ notation (for example, 1.2.3.4).");
],
complete => sub {
- $intf->{BOOTPROTO} = $auto_ip ? join('', if_($auto_ip, "dhcp") ) : "static";
+ $intf->{BOOTPROTO} = $auto_ip ? join('', if_($auto_ip, "dhcp")) : "static";
$netc->{DHCP} = $auto_ip;
$netc->{ZEROCONF} = $zeroconf;
return 0 if $auto_ip;
@@ -408,7 +408,7 @@ You may also enter the IP address of the gateway if you have one."),
$in->ask_warn('', N("Gateway address should be in format 1.2.3.4"));
return 1;
}
- if ($netc->{ZEROCONF_HOSTNAME} and $netc->{ZEROCONF_HOSTNAME} =~ /\./ ) {
+ if ($netc->{ZEROCONF_HOSTNAME} and $netc->{ZEROCONF_HOSTNAME} =~ /\./) {
$in->ask_warn('', N("Zeroconf host name must not contain a ."));
return 1;
}