From: Stephen L Johnson Date: Tue, 9 Jul 2002 22:41:23 +0000 (+0000) Subject: changed 'spong-network' strings to 'spong-server' X-Git-Tag: spong-2_8_0-beta1~67 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5124ff7270ea36a22aa378163f2b13825f9b3c2;p=spong.git changed 'spong-network' strings to 'spong-server' --- diff --git a/src/spong-server.pl b/src/spong-server.pl index f68479f..d297da6 100755 --- a/src/spong-server.pl +++ b/src/spong-server.pl @@ -6,7 +6,7 @@ # There are one or more update processes that listen for status updates # from client programs. -# $Id: spong-server.pl,v 1.52 2002/07/09 21:41:47 sljohnson Exp $ +# $Id: spong-server.pl,v 1.53 2002/07/09 22:41:23 sljohnson Exp $ use lib "@@LIBDIR@@"; @@ -1373,7 +1373,7 @@ sub daemonize { sigprocmask(SIG_SETMASK, $sigset ); # Set up some signal handlers to handle our death gracefully, and also - # listen for the HUP signal, and if we se that, we re-exec ourself. + # listen for the HUP signal, and if we see that, we re-exec ourself. $SIG{'QUIT'} = \&exit_handler; $SIG{'TERM'} = \&exit_handler; @@ -1394,7 +1394,7 @@ sub handle_signals { # re-exec itself (which causes it to re-read it's configuration files. if( already_running() ) { - open( PID, "$SPONGTMP/spong-network.pid") || die "Can't find pid: $!"; + open( PID, "$SPONGTMP/spong-server.pid") || die "Can't find pid: $!"; my $pid = ; chomp $pid; close PID; @@ -1404,7 +1404,7 @@ sub handle_signals { &debug( "telling pid $pid to die" ); kill( 'QUIT', $pid );} } else { - debug("Can't find instance of spong-network running"); + debug("Can't find instance of spong-server running"); } }