From eb4918707eb5fa97782c3c15aafdbc8cce44d446 Mon Sep 17 00:00:00 2001 From: minima Date: Wed, 28 Jul 2004 22:46:05 +0000 Subject: [PATCH] fix via typo --- perl/Investigate.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl/Investigate.pm b/perl/Investigate.pm index 5fce74b6..e1cb9b28 100644 --- a/perl/Investigate.pm +++ b/perl/Investigate.pm @@ -122,8 +122,8 @@ sub process { while (my ($k, $v) = each %list) { if ($v->{state} eq 'start') { - my $v = $via{$v->{via}} || 0; - if ($main::systime > $v+$pingint) { + my $via = $via{$v->{via}} || 0; + if ($main::systime > $via+$pingint) { DXProt::addping($main::mycall, $v->{call}, $v->{via}); $v->{start} = $lastping = $main::systime; dbg("Investigate: ping sent to $v->{call} via $v->{via}") if isdbg('investigate'); -- 2.34.1