fix sofia build with new openssl

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15426 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Mathieu Rene 2009-11-11 05:33:59 +00:00
parent 5c5c23c2d4
commit 57169ef9fb
1 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ int tls_init_context(tls_t *tls, tls_issues_t const *ti)
#endif
if (tls->ctx == NULL) {
SSL_METHOD *meth;
const SSL_METHOD *meth;
/* meth = SSLv3_method(); */
/* meth = SSLv23_method(); */
@ -281,7 +281,7 @@ int tls_init_context(tls_t *tls, tls_issues_t const *ti)
else
meth = SSLv23_method();
tls->ctx = SSL_CTX_new(meth);
tls->ctx = SSL_CTX_new((SSL_METHOD*)meth);
}
if (tls->ctx == NULL) {