From 71bf8a6985a6d421bb4b1a0f4048e25634995876 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 10 Oct 2001 22:04:42 +0000 Subject: [PATCH] checkserver() bugged, Kevin Roth detected and fixed --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index cc10dd670..555930adf 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -114,7 +114,7 @@ sub checkserver { # check for pidfile if ( -f $pidfile ) { - my $PID=serverpid($pidfile); + $PID=serverpid($pidfile); if ($PID ne "" && kill(0, $PID)) { $RUNNING=1; }