diff options
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index c9b7dc22a..4bc32bf36 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -671,7 +671,7 @@ sub verifyssh { # since runsshserver() unlinks previous pidfile if(!kill(0, $pid)) { logmsg "RUN: SSH server has died after starting up\n"; - checkdied($pid) + checkdied($pid); unlink($SSHPIDFILE); $pid = -1; } @@ -694,7 +694,7 @@ sub verifysocks { # since runsocksserver() unlinks previous pidfile if(!kill(0, $pid)) { logmsg "RUN: SOCKS server has died after starting up\n"; - checkdied($pid) + checkdied($pid); unlink($SOCKSPIDFILE); $pid = -1; } |