mirror of
https://github.com/curl/curl.git
synced 2026-04-21 10:12:11 +03:00
Fixed compiler warning on non-SSL builds
This commit is contained in:
parent
844cbc701a
commit
ea908c23ae
1 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue