diff options
-rw-r--r-- | lib/sslgen.c | 3 | ||||
-rw-r--r-- | lib/sslgen.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c index 210ea9af5..f110a51ea 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -609,6 +609,9 @@ bool Curl_ssl_data_pending(struct connectdata *conn, if(conn->ssl[connindex].handle) /* SSL is in use */ return SSL_pending(conn->ssl[connindex].handle); +#else + (void)conn; + (void)connindex; #endif return FALSE; /* nothing pending */ diff --git a/lib/sslgen.h b/lib/sslgen.h index eef92982c..c24d46bf3 100644 --- a/lib/sslgen.h +++ b/lib/sslgen.h @@ -77,7 +77,6 @@ bool Curl_ssl_data_pending(struct connectdata *conn, #if !defined(USE_SSL) && !defined(SSLGEN_C) /* set up blank macros for none-SSL builds */ #define Curl_ssl_close_all(x) -#define Curl_ssl_data_pending(x,y) 0 #endif #define SSL_SHUTDOWN_TIMEOUT 10000 /* ms */ |