prevent warning for non-SSL builds

This commit is contained in:
Daniel Stenberg 2003-11-24 11:44:04 +00:00
parent 96d7a95ce4
commit d8cf2d42c0

View File

@ -1249,8 +1249,8 @@ Curl_SSLConnect(struct connectdata *conn,
X509_free(connssl->server_cert); X509_free(connssl->server_cert);
#else /* USE_SSLEAY */ #else /* USE_SSLEAY */
/* this is for "-ansi -Wall -pedantic" to stop complaining! (rabe) */ (void)conn;
(void) conn; (void)sockindex;
#endif #endif
return retcode; return retcode;
} }