mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
winhttp: Fix const qualifier warning for OpenSSL 1.0.0.
This commit is contained in:
parent
7ee3f2d205
commit
0c7bd62df2
@ -1073,7 +1073,11 @@ const void *netconn_get_certificate( netconn_t *conn )
|
||||
int netconn_get_cipher_strength( netconn_t *conn )
|
||||
{
|
||||
#ifdef SONAME_LIBSSL
|
||||
#if defined(OPENSSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER >= 0x0090707f)
|
||||
const SSL_CIPHER *cipher;
|
||||
#else
|
||||
SSL_CIPHER *cipher;
|
||||
#endif
|
||||
int bits = 0;
|
||||
|
||||
if (!conn->secure) return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user