Fixed compiler warning

SVN revision: 2337
This commit is contained in:
Stefan Ritt 2010-11-16 12:55:38 +00:00
parent f1f72329df
commit 8d733bcca7
2 changed files with 2 additions and 2 deletions

View File

@ -348,7 +348,7 @@ int ssl_connect(int sock, SSL ** ssl_con)
SSL_library_init(); SSL_library_init();
SSL_load_error_strings(); SSL_load_error_strings();
meth = SSLv23_method(); meth = (SSL_METHOD *)SSLv23_method();
ctx = SSL_CTX_new(meth); ctx = SSL_CTX_new(meth);
*ssl_con = SSL_new(ctx); *ssl_con = SSL_new(ctx);

View File

@ -27996,7 +27996,7 @@ SSL_CTX *init_ssl(void)
SSL_library_init(); SSL_library_init();
SSL_load_error_strings(); SSL_load_error_strings();
meth = SSLv23_method(); meth = (SSL_METHOD *)SSLv23_method();
ctx = SSL_CTX_new(meth); ctx = SSL_CTX_new(meth);
if (getcfg("global", "SSL Passphrase", pwd, sizeof(pwd))) { if (getcfg("global", "SSL Passphrase", pwd, sizeof(pwd))) {