mirror of
https://github.com/moparisthebest/curl
synced 2024-11-15 14:05:03 -05:00
Fixed compiler warning on non-SSL builds
This commit is contained in:
parent
844cbc701a
commit
ea908c23ae
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user