From: Yang Tse Date: Mon, 2 Apr 2007 04:14:59 +0000 (+0000) Subject: fix error in previous commit X-Git-Tag: curl-7_16_2~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8c12fe658be792f852c1c4804a1538ff3ec197f;p=curl fix error in previous commit --- diff --git a/tests/sshserver.pl b/tests/sshserver.pl index fefe1b557..974891fcf 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -105,7 +105,7 @@ if ($verbose) { } # Verify minimum OpenSSH version. -if ($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37) +if (($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)) { print "SCP and SFTP tests require OpenSSH 3.7 or later\n"; exit 1; }