mirror of
https://github.com/curl/curl.git
synced 2026-07-22 23:07:16 +03:00
fix compiler warning: empty body in an if-statement
This commit is contained in:
parent
148866bc73
commit
7820391cb9
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ int Curl_ssl_check_cxn(struct connectdata *conn);
|
|||
#else
|
||||
/* When SSL support is not present, just define away these function calls */
|
||||
#define Curl_ssl_init() 1
|
||||
#define Curl_ssl_cleanup()
|
||||
#define Curl_ssl_cleanup() do { } while (0)
|
||||
#define Curl_ssl_connect(x,y) CURLE_FAILED_INIT
|
||||
#define Curl_ssl_connect_nonblocking(x,y,z) (z=z, CURLE_FAILED_INIT)
|
||||
#define Curl_ssl_close_all(x)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue