]> git.etc.gen.nz Git - spong.git/commitdiff
really, really fixed that regexp problem in remove_np_files(). (David Bronder)
authorStephen L Johnson <sjohnson@monsters.org>
Thu, 17 Jul 2003 02:45:33 +0000 (02:45 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Thu, 17 Jul 2003 02:45:33 +0000 (02:45 +0000)
src/spong-server.pl

index 7bd09bb56971efe5545bd733a2e1007773aaabea..59bb7c98721d3bde2f6596344994104c1618772d 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.62 2003/07/16 20:15:43 sljohnson Exp $
+# $Id: spong-server.pl,v 1.63 2003/07/17 02:45:33 sljohnson Exp $
 
 use lib "@@LIBDIR@@";
 
@@ -1305,7 +1305,7 @@ sub remove_np_files {
    if (! @files) { return; }
 
    foreach $file (@files) {
-      if ( $file =~ m/^np-.*-${host}-${service}/o ) {
+      if ( $file =~ m/^np-.*-${host}-${service}/ ) {
          unlink "$SPONGTMP/$file";
       }
    }