From: Daniel Stenberg Date: Wed, 14 Mar 2001 10:15:42 +0000 (+0000) Subject: Björn Stenberg corrected the silly '(void)data' usage when SSL is not X-Git-Tag: curl-7_7-beta3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cce05b9138102946fdd49d3b59e51dd66b7da0e8;p=curl Björn Stenberg corrected the silly '(void)data' usage when SSL is not used --- diff --git a/lib/ssluse.c b/lib/ssluse.c index 648d7c6bf..716ceb4e6 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -358,7 +358,7 @@ Curl_SSLConnect(struct connectdata *conn) X509_free(conn->ssl.server_cert); #else /* USE_SSLEAY */ /* this is for "-ansi -Wall -pedantic" to stop complaining! (rabe) */ - (void) data; + (void) conn; #endif return 0; }