From: Stephen L Johnson Date: Wed, 14 May 2003 06:02:01 +0000 (+0000) Subject: Replaced $SPONGWWW var with $SPONGTMP in remove_np_files function. Thanks to John... X-Git-Tag: spong-2_8_0-beta1~38 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4157f78be41719d630158ff6c7920ef45c31a06f;p=spong.git Replaced $SPONGWWW var with $SPONGTMP in remove_np_files function. Thanks to John Faichney --- diff --git a/src/spong-server.pl b/src/spong-server.pl index 6ab7dfd..12a5847 100755 --- a/src/spong-server.pl +++ b/src/spong-server.pl @@ -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.58 2003/05/14 05:49:46 sljohnson Exp $ +# $Id: spong-server.pl,v 1.59 2003/05/14 06:02:01 sljohnson Exp $ use lib "@@LIBDIR@@"; @@ -1304,7 +1304,7 @@ sub remove_np_files { foreach $file (@files) { if ( $file =~ m/^np-[^-]-$host-$service/ ) { - unlink "$SPONGWWW/$file"; + unlink "$SPONGTMP/$file"; } }