added const cast #4168

This commit is contained in:
XinyuHou 2015-02-10 12:22:30 +00:00
parent 98716f4e78
commit 31440b1a8a
1 changed files with 3 additions and 2 deletions

View File

@ -173,7 +173,7 @@ SecureSocket::initContext(bool server)
{ {
SSL_library_init(); SSL_library_init();
SSL_METHOD* method; const SSL_METHOD* method;
// load & register all cryptos, etc. // load & register all cryptos, etc.
OpenSSL_add_all_algorithms(); OpenSSL_add_all_algorithms();
@ -191,7 +191,8 @@ SecureSocket::initContext(bool server)
} }
// create new context from method // create new context from method
m_ssl->m_context = SSL_CTX_new(method); SSL_METHOD* m = const_cast<SSL_METHOD*>(method);
m_ssl->m_context = SSL_CTX_new(m);
if (m_ssl->m_context == NULL) { if (m_ssl->m_context == NULL) {
showError(); showError();
} }