mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
*Web\SSL: Fixed to compile with recent SSL
git-svn-id: svn://ultimatepp.org/upp/trunk@2459 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
1f1b602e3b
commit
8f32960942
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ bool HttpsClient::CreateClientSocket()
|
|||
return HttpClient::CreateClientSocket();
|
||||
if(!ssl_context) {
|
||||
ssl_context = new SSLContext;
|
||||
if(!ssl_context->Create(SSLv3_client_method())) {
|
||||
if(!ssl_context->Create(const_cast<SSL_METHOD *>(SSLv3_client_method()))) {
|
||||
error = t_("Error creating SSL context.");
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue