From 7515a75206aee8f0e3c78301b4e8ce80f7aa9c98 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Sat, 6 Jan 2007 10:49:11 +0000 Subject: Fix compilation errors when building without SSL --- lib/sslgen.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/sslgen.c b/lib/sslgen.c index e4fb5fb24..cc9642b66 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -400,11 +400,16 @@ void Curl_ssl_close(struct connectdata *conn) CURLcode Curl_ssl_shutdown(struct connectdata *conn, int sockindex) { if(conn->ssl[sockindex].use) { +#ifdef USE_SSLEAY + return Curl_ossl_shutdown(conn, sockindex); +#else #ifdef USE_GNUTLS return Curl_gtls_shutdown(conn, sockindex); #else - return Curl_ossl_shutdown(conn, sockindex); -#endif + (void)conn; + (void)sockindex; +#endif /* USE_GNUTLS */ +#endif /* USE_SSLEAY */ } return CURLE_OK; } -- cgit v1.2.3