aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-10 22:04:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-10 22:04:42 +0000
commit71bf8a6985a6d421bb4b1a0f4048e25634995876 (patch)
tree076fb6998098d96122640bdd5974f5bbeb765fd0 /tests
parent59a76e401050b65ca8ebfc74915c54b033185e0c (diff)
checkserver() bugged, Kevin Roth detected and fixed
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
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;
}