summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-17 02:36:07 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-17 02:36:07 +0000
commita08e5f2c5751d07a77b8d7a87adfb0f789fafb51 (patch)
tree4f715cd96bd45d0f9ade1c854f4bf16797276040
parentee5e785e4a6bb62a0314be144eefc8dc2451144a (diff)
Fix typo
-rw-r--r--Echolot/Pinger.pm4
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);
}