Commit f30616e2 authored by Jerome Leclanche's avatar Jerome Leclanche Committed by Alexandre Julliard

wininet: Fix a warning when compiling --without-openssl.

parent c28baa7b
...@@ -656,10 +656,10 @@ int sock_get_error( int err ) ...@@ -656,10 +656,10 @@ int sock_get_error( int err )
*/ */
DWORD NETCON_secure_connect(netconn_t *connection, LPWSTR hostname) DWORD NETCON_secure_connect(netconn_t *connection, LPWSTR hostname)
{ {
void *ssl_s;
DWORD res = ERROR_NOT_SUPPORTED; DWORD res = ERROR_NOT_SUPPORTED;
#ifdef SONAME_LIBSSL #ifdef SONAME_LIBSSL
void *ssl_s;
/* can't connect if we are already connected */ /* can't connect if we are already connected */
if (connection->ssl_s) if (connection->ssl_s)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment