diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-12-05 11:31:48 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-12-05 11:31:48 +0000 |
commit | 9726f47047b94334fea074d0a359ea10851319ac (patch) | |
tree | 28493f59f4701224cf91b5abcd34fad1f54bf23c /perl-install/network/tools.pm | |
parent | 41a302ea87cab2d1fc7159f2787bf386c17b2714 (diff) | |
download | drakx-9726f47047b94334fea074d0a359ea10851319ac.tar drakx-9726f47047b94334fea074d0a359ea10851319ac.tar.gz drakx-9726f47047b94334fea074d0a359ea10851319ac.tar.bz2 drakx-9726f47047b94334fea074d0a359ea10851319ac.tar.xz drakx-9726f47047b94334fea074d0a359ea10851319ac.zip |
fix missing ";" (thanks to Robert Fox)
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r-- | perl-install/network/tools.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 3a11daeb4..0657e46be 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -127,7 +127,7 @@ sub connected_bg { if (defined($a = <F>)) { close($kid_pipe) || warn "kid exited $?"; undef $kid_pipe; - print STDERR "debug - hostname result : $a\n" + print STDERR "debug - hostname result : $a\n"; $$ref = $a; } } else { $kid_pipe = connected2() } |