Commit ea908c23 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed compiler warning on non-SSL builds

parent 844cbc70
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)