Commit 1ada7ba2 authored by Alexandre Julliard's avatar Alexandre Julliard

wininet: Fixed compilation without SSL.

parent 172a35c4
...@@ -582,10 +582,11 @@ BOOL NETCON_query_data_available(WININET_NETCONNECTION *connection, DWORD *avail ...@@ -582,10 +582,11 @@ BOOL NETCON_query_data_available(WININET_NETCONNECTION *connection, DWORD *avail
if (!NETCON_connected(connection)) if (!NETCON_connected(connection))
return FALSE; return FALSE;
if (connection->peek_msg) *available = 0;
*available = connection->peek_len; #if defined HAVE_OPENSSL_SSL_H
else if (connection->peek_msg) *available = connection->peek_len;
*available = 0; #endif
#ifdef FIONREAD #ifdef FIONREAD
if (!connection->useSSL) if (!connection->useSSL)
{ {
......
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