diff options
Diffstat (limited to 'perl-install/network/test.pm')
-rw-r--r-- | perl-install/network/test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/test.pm b/perl-install/network/test.pm index 2b07234d2..92ba858b5 100644 --- a/perl-install/network/test.pm +++ b/perl-install/network/test.pm @@ -98,7 +98,7 @@ sub update_status { fcntl($fd, c::F_SETFL(), c::O_NONBLOCK()) or die "can't fcntl F_SETFL: $!"; local $| = 1; if (defined(my $output = <$fd>)) { - ($o->{address}, $o->{ping}) = $output =~ /^([\d\.]+)\|([\d\.]+)*$/; + ($o->{address}, $o->{ping}) = $output =~ /^([\d\.]+)\|([\d\.\,]+)*$/; $o->{done} = 1; undef $o->{kid}; } |