diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-06-06 10:29:05 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-06-06 10:29:05 +0000 |
commit | f65b7285bdca262962a6642c90d0a76f838fbf99 (patch) | |
tree | b985407f06607d65b8462f688a71be4750715d25 /pingd | |
parent | 902c505e4ad26e5fcf261410710cc45530c8223f (diff) |
Fix typo
Diffstat (limited to 'pingd')
-rwxr-xr-x | pingd | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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"); |