]> git.etc.gen.nz Git - spong.git/commitdiff
Fixed problem with file name regexp in remove_np_files(). Thank to John Faichney
authorStephen L Johnson <sjohnson@monsters.org>
Mon, 2 Jun 2003 20:54:27 +0000 (20:54 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Mon, 2 Jun 2003 20:54:27 +0000 (20:54 +0000)
src/spong-server.pl

index 12a584770f7ae954a4d1941ac678f3ff83f3915b..a3ffd25b0e34876fe59a8c0cf0d9e0726d6f8e44 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.59 2003/05/14 06:02:01 sljohnson Exp $
+# $Id: spong-server.pl,v 1.60 2003/06/02 20:54:27 sljohnson Exp $
 
 use lib "@@LIBDIR@@";
 
@@ -1303,7 +1303,7 @@ sub remove_np_files {
    if (! @files) { return; }
 
    foreach $file (@files) {
-      if ( $file =~ m/^np-[^-]-$host-$service/ ) {
+      if ( $file =~ m/^np-[^\-]+-$host-$service/ ) {
          unlink "$SPONGTMP/$file";
       }
    }