提交 57169ef9 authored 作者: Mathieu Rene's avatar Mathieu Rene

fix sofia build with new openssl

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15426 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 5c5c23c2
......@@ -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) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论