try a better arc diddle

This commit is contained in:
minima 2001-09-07 21:43:15 +00:00
parent 8a43bfdeac
commit 874ee7e39c

View File

@ -1044,8 +1044,8 @@ sub normal
shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
# cope with a missed ping, this means you must set the pingint large enough
my $miss = ($nopings-$tochan->{nopings}) * $tochan->{pingint};
if ($tochan->is_arcluster && $t > $miss && $t < $miss + $tochan->{nopings} ) {
my $miss = ($nopings-$tochan->{nopings}+1) * $tochan->{pingint};
if ($tochan->is_arcluster && $miss > 0 && $t > $miss && $t < $miss + $tochan->{nopings} ) {
$t -= $miss;
}