From 36eddd2c06ce9b09c83102353deb213e065e901d Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 5 Nov 2013 19:40:35 -0500 Subject: [PATCH] Fix compilation warning with SSLv23_client_method() --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 46827f7..3acb529 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -48,7 +48,7 @@ SSL_CTX * InitCTX( void ) { - SSL_METHOD *method; + const SSL_METHOD *method; SSL_CTX *ctx; SSL_library_init(); /* Load cryptos, et.al. */ -- 2.20.1