From 2b280bcc69137e53650b06372cdfc60d86d214a3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 25 Jan 2007 21:00:03 +0000 Subject: fix compiler warnings for SSL-disabled builds --- lib/sslgen.c | 3 +++ lib/sslgen.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) 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 */ -- cgit v1.2.3