From cb0cd69933829cd5d346e4b466c11c35c6fe8efb Mon Sep 17 00:00:00 2001 From: Izik Eidus Date: Tue, 22 Dec 2009 06:52:14 +0200 Subject: spice: fix ssl compiling errors (openssl api was changed, so lets have ifdef to compile in all cases) Signed-off-by: Izik Eidus --- client/red_peer.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'client/red_peer.cpp') diff --git a/client/red_peer.cpp b/client/red_peer.cpp index dad035d4..79409ed1 100644 --- a/client/red_peer.cpp +++ b/client/red_peer.cpp @@ -132,7 +132,11 @@ void RedPeer::connect_secure(const ConnectionOptions& options, uint32_t ip) ASSERT(_ctx == NULL && _ssl == NULL && _peer != INVALID_SOCKET); try { +#if OPENSSL_VERSION_NUMBER >= 0x10000000L + const SSL_METHOD *ssl_method = TLSv1_method(); +#else SSL_METHOD *ssl_method = TLSv1_method(); +#endif _ctx = SSL_CTX_new(ssl_method); if (_ctx == NULL) { -- cgit