diff options
author | Yang Tse <yangsita@gmail.com> | 2008-01-04 14:12:10 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-01-04 14:12:10 +0000 |
commit | 61a2d5ea75706520ccafd48aa7d4c6d35f92204e (patch) | |
tree | 82695cea1c5b834ff53c2c1a7b5887a6a3d68aeb /tests/sshserver.pl | |
parent | c479c643332b08eedcf9b7caa98b25e7f542d9c8 (diff) | |
download | curl-61a2d5ea75706520ccafd48aa7d4c6d35f92204e.tar.gz |
'ControlPath' ssh client configuration file option requires OpenSSH 4.2 or
later to accept 'none' as an indication to disable connection multiplexing
Diffstat (limited to 'tests/sshserver.pl')
-rw-r--r-- | tests/sshserver.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl index dac46a9f4..f651e0714 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -746,6 +746,9 @@ if((($sshid =~ /OpenSSH/) && ($sshvernum >= 370)) || if(($sshid =~ /OpenSSH/) && ($sshvernum >= 390)) { push @cfgarr, 'ControlMaster no'; +} + +if(($sshid =~ /OpenSSH/) && ($sshvernum >= 420)) { push @cfgarr, 'ControlPath none'; } |