From 10a13eba720aa1cde72d25dc7610bec6ef990ad8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 25 Jan 2007 11:09:56 +0000 Subject: [PATCH] fix non-SSL builds again --- lib/sslgen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sslgen.h b/lib/sslgen.h index d4b05b2..eef9298 100644 --- a/lib/sslgen.h +++ b/lib/sslgen.h @@ -77,7 +77,7 @@ 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) 0 +#define Curl_ssl_data_pending(x,y) 0 #endif #define SSL_SHUTDOWN_TIMEOUT 10000 /* ms */ -- 2.7.4