mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-13 21:56:09 +01:00
43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
|
--- dclib/core/cssl.cpp 2009-01-07 23:13:52.000000000 +0100
|
||
|
+++ dclib/core/cssl.cpp.new 2013-09-29 13:19:29.489059230 +0200
|
||
|
@@ -86,10 +86,10 @@
|
||
|
/** */
|
||
|
SSL_CTX * CSSL::InitClientCTX()
|
||
|
{
|
||
|
- SSL_METHOD *method;
|
||
|
+ const SSL_METHOD *method;
|
||
|
SSL_CTX *ctx = NULL;
|
||
|
|
||
|
- method = SSLv23_client_method(); /* Create new client-method instance */
|
||
|
+ method = SSLv23_client_method(); /* Create new client-method instance */
|
||
|
|
||
|
// sanity check
|
||
|
if ( method != NULL )
|
||
|
@@ -109,7 +109,7 @@
|
||
|
/** */
|
||
|
SSL_CTX * CSSL::InitServerCTX()
|
||
|
{
|
||
|
- SSL_METHOD *method;
|
||
|
+ const SSL_METHOD *method;
|
||
|
SSL_CTX *ctx = NULL;
|
||
|
|
||
|
method = SSLv23_server_method(); /* Create new client-method instance */
|
||
|
@@ -130,7 +130,7 @@
|
||
|
/** */
|
||
|
SSL_CTX * CSSL::NewTLSv1ClientCTX()
|
||
|
{
|
||
|
- SSL_METHOD * method = TLSv1_client_method();
|
||
|
+ const SSL_METHOD * method = TLSv1_client_method();
|
||
|
SSL_CTX * ctx = NULL;
|
||
|
|
||
|
if ( method != NULL )
|
||
|
@@ -149,7 +149,7 @@
|
||
|
/** */
|
||
|
SSL_CTX * CSSL::NewTLSv1ServerCTX()
|
||
|
{
|
||
|
- SSL_METHOD * method = TLSv1_server_method();
|
||
|
+ const SSL_METHOD * method = TLSv1_server_method();
|
||
|
SSL_CTX * ctx = NULL;
|
||
|
|
||
|
if ( method != NULL )
|