rpms/bes/devel bes-3.7.2-openssl.patch,NONE,1.1

Tomáš Mráz tmraz at fedoraproject.org
Sat Aug 22 09:58:41 UTC 2009


Author: tmraz

Update of /cvs/pkgs/rpms/bes/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9714

Added Files:
	bes-3.7.2-openssl.patch 
Log Message:
* Sat Aug 22 2009 Tomas Mraz <tmraz at redhat.com> - 3.7.2-3
- rebuilt with new openssl


bes-3.7.2-openssl.patch:
 SSLClient.cc |    4 ++++
 SSLServer.cc |    4 ++++
 2 files changed, 8 insertions(+)

--- NEW FILE bes-3.7.2-openssl.patch ---
diff -up bes-3.7.2/ppt/SSLClient.cc.openssl bes-3.7.2/ppt/SSLClient.cc
--- bes-3.7.2/ppt/SSLClient.cc.openssl	2009-03-12 22:30:41.000000000 +0100
+++ bes-3.7.2/ppt/SSLClient.cc	2009-08-22 11:56:21.000000000 +0200
@@ -79,7 +79,11 @@ SSLClient::initConnection()
     SSL_library_init() ;
     BESDEBUG( "ppt", "OK" << endl )
 
+#if OPENSSL_VERSION_NUMBER < 0x10000000L
     SSL_METHOD *method = NULL ;
+#else
+    const SSL_METHOD *method = NULL ;
+#endif
     SSL_CTX *context = NULL ;
 
     BESDEBUG( "ppt", "Creating method and context ... " << endl )
diff -up bes-3.7.2/ppt/SSLServer.cc.openssl bes-3.7.2/ppt/SSLServer.cc
--- bes-3.7.2/ppt/SSLServer.cc.openssl	2009-03-10 03:46:41.000000000 +0100
+++ bes-3.7.2/ppt/SSLServer.cc	2009-08-22 11:54:08.000000000 +0200
@@ -83,7 +83,11 @@ SSLServer::initConnection()
     SSL_library_init() ;
     BESDEBUG( "ppt", "OK" << endl )
 
+#if OPENSSL_VERSION_NUMBER < 0x10000000L
     SSL_METHOD *method = NULL ;
+#else
+    const SSL_METHOD *method = NULL ;
+#endif
     SSL_CTX *context = NULL ;
     BESDEBUG( "ppt", "Creating method and context ... " << endl )
     method = SSLv3_server_method() ;




More information about the fedora-extras-commits mailing list