diff options
author | Yang Tse <yangsita@gmail.com> | 2009-12-28 20:10:00 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-12-28 20:10:00 +0000 |
commit | c796f2646ed7a2c37cd3c88e6ae685ad5ad3c177 (patch) | |
tree | da61e0e27315c7e632840c1b7c621f2ce8a75920 /tests/runtests.pl | |
parent | d0f6bde732446b51c3cc4a73a4db708a3f96a6aa (diff) | |
download | curl-c796f2646ed7a2c37cd3c88e6ae685ad5ad3c177.tar.gz |
Leftover from previous commit
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index d68aebf83..65abc41e7 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1391,7 +1391,7 @@ sub runsocksserver { if($sshpid <= 0 || !kill(0, $sshpid)) { # it is NOT alive - logmsg "RUN: failed to start the SOCKS server\n"; + logmsg "RUN: failed to start the $srvrname server\n"; display_sshlog(); display_sshconfig(); display_sshdlog(); @@ -1404,7 +1404,7 @@ sub runsocksserver { # Ugly hack but ssh doesn't support pid files my $pid3 = verifyserver("socks",$ip,$port); if(!$pid3) { - logmsg "RUN: SOCKS server failed verification\n"; + logmsg "RUN: $srvrname server failed verification\n"; # failed to talk to it properly. Kill the server and return failure stopserver("$sshpid $pid2"); $doesntrun{$pidfile} = 1; @@ -1413,7 +1413,7 @@ sub runsocksserver { $pid2 = $pid3; if($verbose) { - logmsg "RUN: SOCKS server is now running PID $pid2\n"; + logmsg "RUN: $srvrname server is now running PID $pid2\n"; } return ($pid2, $sshpid); |