Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
vtls.h: Fixed compiler warning when compiled without SSL
vtls.c:185:46: warning: unused parameter 'data'
  • Loading branch information
captain-caveman2k committed Nov 9, 2014
1 parent 95c7cfb commit bfc63bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vtls/vtls.h
Expand Up @@ -134,7 +134,7 @@ CURLcode Curl_pin_peer_pubkey(const char *pinnedpubkey,
#define Curl_ssl_free_certinfo(x) Curl_nop_stmt
#define Curl_ssl_connect_nonblocking(x,y,z) CURLE_NOT_BUILT_IN
#define Curl_ssl_kill_session(x) Curl_nop_stmt
#define Curl_ssl_random(x,y,z) CURLE_NOT_BUILT_IN
#define Curl_ssl_random(x,y,z) ((void)x, CURLE_NOT_BUILT_IN)
#define CURL_SSL_BACKEND CURLSSLBACKEND_NONE
#endif

Expand Down

0 comments on commit bfc63bf

Please sign in to comment.