summaryrefslogtreecommitdiff
path: root/pingd
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-06-06 10:29:05 +0000
committerPeter Palfrader <peter@palfrader.org>2003-06-06 10:29:05 +0000
commitf65b7285bdca262962a6642c90d0a76f838fbf99 (patch)
treeb985407f06607d65b8462f688a71be4750715d25 /pingd
parent902c505e4ad26e5fcf261410710cc45530c8223f (diff)
Fix typo
Diffstat (limited to 'pingd')
-rwxr-xr-xpingd6
1 files changed, 3 insertions, 3 deletions
diff --git a/pingd b/pingd
index 6c6be18..a713074 100755
--- a/pingd
+++ b/pingd
@@ -3,7 +3,7 @@
$| = 1;
# (c) 2002, 2003 Peter Palfrader <peter@palfrader.org>
-# $Id: pingd,v 1.106 2003/06/06 10:18:23 weasel Exp $
+# $Id: pingd,v 1.107 2003/06/06 10:29:05 weasel Exp $
#
=pod
@@ -342,11 +342,11 @@ sub setSigHandlers() {
};
$SIG{'QUIT'} = sub {
Echolot::Log::info("Got SIGQUIT. scheduling exit.");
- Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, 0) );
+ Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, 0 );
};
$SIG{'TERM'} = sub {
Echolot::Log::info("Got SIGTERM. scheduling exit.");
- Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, 0) );
+ Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, 0 );
};
$SIG{'PIPE'} = sub {
Echolot::Log::error("Got SIGPIPE");