summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Echolot/Pinger.pm6
-rw-r--r--Echolot/Scheduler.pm4
2 files changed, 5 insertions, 5 deletions
diff --git a/Echolot/Pinger.pm b/Echolot/Pinger.pm
index cebfe05..a66ca30 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.2 2002/06/11 10:08:19 weasel Exp $
+# $Id: Pinger.pm,v 1.3 2002/06/11 10:17:09 weasel Exp $
#
=pod
@@ -70,8 +70,8 @@ sub do_ping($$$) {
};
sub send_pings() {
- my $call_intervall = Echolot::Config::get()->{'pinger_interval'}
- my $send_every_n_calls = Echolot::Config::get()->{'ping_every_nth_time'}
+ my $call_intervall = Echolot::Config::get()->{'pinger_interval'};
+ my $send_every_n_calls = Echolot::Config::get()->{'ping_every_nth_time'};
my $now = time();
diff --git a/Echolot/Scheduler.pm b/Echolot/Scheduler.pm
index 24ca6e3..8ac4983 100644
--- a/Echolot/Scheduler.pm
+++ b/Echolot/Scheduler.pm
@@ -1,7 +1,7 @@
package Echolot::Scheduler;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Scheduler.pm,v 1.1 2002/06/05 04:05:40 weasel Exp $
+# $Id: Scheduler.pm,v 1.2 2002/06/11 10:16:38 weasel Exp $
#
=pod
@@ -21,7 +21,7 @@ the ping daemon.
use strict;
use warnings;
-use Carp gw{cluck};
+use Carp qw{cluck};
my $ORDER = 1;