1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Fixed compiler warning on non-SSL builds

This commit is contained in:
Dan Fandrich 2007-07-30 17:05:39 +00:00
parent 844cbc701a
commit ea908c23ae

View File

@ -451,6 +451,10 @@ void Curl_ssl_close(struct connectdata *conn, int sockindex)
#ifdef USE_QSOSSL
Curl_qsossl_close(conn, sockindex);
#endif /* USE_QSOSSL */
#ifndef USE_SSL
(void)conn;
(void)sockindex;
#endif /* !USE_SSL */
}
CURLcode Curl_ssl_shutdown(struct connectdata *conn, int sockindex)