]> git.etc.gen.nz Git - spong.git/commitdiff
changed 'spong-network' strings to 'spong-server'
authorStephen L Johnson <sjohnson@monsters.org>
Tue, 9 Jul 2002 22:41:23 +0000 (22:41 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Tue, 9 Jul 2002 22:41:23 +0000 (22:41 +0000)
src/spong-server.pl

index f68479ff5f4caaebb57a01e9c560c5d50a49c23f..d297da65bec0bcef67c4de013fde061b4d2ab80b 100755 (executable)
@@ -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 = <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");
    }
 
 }