Bjrn Stenberg corrected the silly '(void)data' usage when SSL is not

used
This commit is contained in:
Daniel Stenberg 2001-03-14 10:15:42 +00:00
parent 72a7fd4dc7
commit cce05b9138
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}