1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-11 20:15:03 -05:00

fix non-SSL builds again

This commit is contained in:
Daniel Stenberg 2007-01-25 11:09:56 +00:00
parent 44ac2776ae
commit 10a13eba72

View File

@ -77,7 +77,7 @@ bool Curl_ssl_data_pending(struct connectdata *conn,
#if !defined(USE_SSL) && !defined(SSLGEN_C) #if !defined(USE_SSL) && !defined(SSLGEN_C)
/* set up blank macros for none-SSL builds */ /* set up blank macros for none-SSL builds */
#define Curl_ssl_close_all(x) #define Curl_ssl_close_all(x)
#define Curl_ssl_data_pending(x) 0 #define Curl_ssl_data_pending(x,y) 0
#endif #endif
#define SSL_SHUTDOWN_TIMEOUT 10000 /* ms */ #define SSL_SHUTDOWN_TIMEOUT 10000 /* ms */