From 7c9b666ef12fd6fbb246d3df014271706e2df9f6 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 23 Aug 2002 07:17:23 +0000 Subject: s/eq/==/ --- Echolot/Conf.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm index 8af10f3..b426b47 100644 --- a/Echolot/Conf.pm +++ b/Echolot/Conf.pm @@ -1,7 +1,7 @@ package Echolot::Conf; # (c) 2002 Peter Palfrader -# $Id: Conf.pm,v 1.26 2002/08/23 06:03:56 weasel Exp $ +# $Id: Conf.pm,v 1.27 2002/08/23 07:17:23 weasel Exp $ # =pod @@ -65,7 +65,7 @@ sub send_requests($;$) { next unless ( $which eq $address || $which eq 'all' || - ($which eq '' && $this_call_id eq (Echolot::Tools::makeShortNumHash($address.$type) % $send_every_n_calls))); + (($which eq '') && ($this_call_id == (Echolot::Tools::makeShortNumHash($address.$type) % $send_every_n_calls)))); print "Sending $type requests to ".$address."\n" if Echolot::Config::get()->{'verbose'}; -- cgit v1.2.3