]> git.etc.gen.nz Git - spong.git/commitdiff
corrected =+ operator in listen_for_queries()
authorStephen L Johnson <sjohnson@monsters.org>
Thu, 16 Aug 2001 13:08:29 +0000 (13:08 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Thu, 16 Aug 2001 13:08:29 +0000 (13:08 +0000)
src/spong-server.pl

index 303e88a043a19294f35d7c0e0dfd4a83aff10845..4a15fc0eeaae9825abc2e180711d187590099bfe 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.44 2001/06/20 17:10:22 supermathie Exp $
+# $Id: spong-server.pl,v 1.45 2001/08/16 13:08:29 sljohnson Exp $
 
 use lib "@@LIBDIR@@";
 
@@ -437,7 +437,7 @@ sub listen_for_queries {
               }
             }
           }
-          $next_update =+ $localTimeOut * 60;
+          $next_update += $localTimeOut * 60;
        } else {
           &debug(time() . " < $next_update");
       }