diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-09-19 11:29:20 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-09-19 11:29:20 +0000 |
commit | 4dbd146905f4e6ac5b849499b40993b53c868f8b (patch) | |
tree | fac6fb53556a75876f7d800fa34b958de7887f55 /perl-install | |
parent | 17d44206ffb02a2f7c6a69c1863c335081af4825 (diff) | |
download | drakx-4dbd146905f4e6ac5b849499b40993b53c868f8b.tar drakx-4dbd146905f4e6ac5b849499b40993b53c868f8b.tar.gz drakx-4dbd146905f4e6ac5b849499b40993b53c868f8b.tar.bz2 drakx-4dbd146905f4e6ac5b849499b40993b53c868f8b.tar.xz drakx-4dbd146905f4e6ac5b849499b40993b53c868f8b.zip |
fix spurious ";" before closing block
Diffstat (limited to 'perl-install')
-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 d68f93747..8f81c4c1b 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -173,7 +173,7 @@ sub test_connected { local $|=1; my ($cmd) = @_; - if (!defined $current_connection_status) { $current_connection_status = -1; } + if (!defined $current_connection_status) { $current_connection_status = -1 } if ($cmd == 0) { if (defined $kid_pipe_connect) { |