To deal with the recently-discovered POODLE vulnerability in SSLv3, we disabled the old protocol on our servers -- including the Subversion repository server.
This broke the svn-clients on our RHEL5 machines -- they now report the following error:
svn: OPTIONS of 'https://svn.example.net/foo/trunk/': SSL negotiation failed: Secure connection truncated (https://svn.example.net).
The svn version is 1.6.11. The same version on RHEL6 is fine, so one could think, the difference lies in the openssl-libraries.
But Apache running on the same RHEL5-box as the svn-client uses the same libraries and is serving its own SSL-traffic without a hitch (over TLSv1).
How do I make svn-client work without the svn-server supporting SSLv3?
Update: Looking closer at ldd's output, I see that svn links with GNUTLS on RHEL6, but OpenSSL on RHEL5, which may account for the difference. I still don't understand, why Apache using OpenSSL on the same RHEL5 system has no problem offering TLSv1, however.