diff options
-rw-r--r-- | Echolot/Pinger.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Pinger.pm b/Echolot/Pinger.pm index 0a96ea3..d996427 100644 --- a/Echolot/Pinger.pm +++ b/Echolot/Pinger.pm @@ -1,7 +1,7 @@ package Echolot::Pinger; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Pinger.pm,v 1.13 2002/07/17 02:34:48 weasel Exp $ +# $Id: Pinger.pm,v 1.14 2002/07/17 02:36:07 weasel Exp $ # =pod @@ -110,7 +110,7 @@ sub send_pings() { for my $type (Echolot::Globals::get()->{'storage'}->get_types($address)) { next unless Echolot::Config::get()->{'do_pings'}->{$type}; for my $key (Echolot::Globals::get()->{'storage'}->get_keys($address, $type)) { - next unless ($this_call_id eq (makeHash($addressi.$type.$key) % $send_every_n_calls)); + next unless ($this_call_id eq (makeHash($address.$type.$key) % $send_every_n_calls)); print "ping calling $type, $address, $key\n" if Echolot::Config::get()->{'verbose'}; do_ping($type, $address, $key); } |