mirror of
https://github.com/curl/curl.git
synced 2026-07-23 18:47:16 +03:00
fix error in previous commit
This commit is contained in:
parent
e4d4ee8db5
commit
b8c12fe658
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue