Fix a couple of typos in the help files for BADDX and BADSPOTTER
[spider.git] / perl / cluster.pl
index 3e9a5a1152c10f9fd51299136c864def3de44398..e66d45aaba898726c3dbdb788a2a305b2cf67384 100755 (executable)
@@ -38,7 +38,6 @@ BEGIN {
        close CLLOCK;
 }
 
-
 use Msg;
 use DXVars;
 use DXDebug;
@@ -79,7 +78,7 @@ package main;
 
 @inqueue = ();                                 # the main input queue, an array of hashes
 $systime = 0;                                  # the time now (in seconds)
-$version = "1.45";                             # the version no of the software
+$version = "1.47";                             # the version no of the software
 $starttime = 0;                 # the starting time of the cluster   
 $lockfn = "cluster.lock";       # lock file name
 @outstanding_connects = ();     # list of outstanding connects
@@ -245,7 +244,7 @@ sub cease
 sub reap
 {
        my $cpid;
-       while (($cpid = waitpid(-1, WNOHANG)) != -1) {
+       while (($cpid = waitpid(-1, WNOHANG)) > 0) {
                dbg('reap', "cpid: $cpid");
                @outstanding_connects = grep {$_->{pid} != $cpid} @outstanding_connects;
                $zombies-- if $zombies > 0;
@@ -317,7 +316,7 @@ STDOUT->autoflush(1);
 Log('cluster', "DXSpider V$version started");
 
 # banner
-dbg('err', "DXSpider DX Cluster Version $version", "Copyright (c) 1998-2000 Dirk Koopman G1TLH");
+dbg('err', "DXSpider DX Cluster Version $version", "Copyright (c) 1998-2001 Dirk Koopman G1TLH");
 
 # load Prefixes
 dbg('err', "loading prefixes ...");
@@ -377,7 +376,6 @@ Spot->init();
 dbg('err', "reading in duplicate spot and WWV info ...");
 DXProt->init();
 
-
 # put in a DXCluster node for us here so we can add users and take them away
 DXNode->new($DXProt::me, $mycall, 0, 1, $DXProt::myprot_version);