diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-24 11:44:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-24 11:44:04 +0000 |
commit | d8cf2d42c01c38e66945b962b63afe11ce23cf4c (patch) | |
tree | 9df600c7fc94f151567f22f4cb4b98c4efefe266 | |
parent | 96d7a95ce4f0b5c61a5f56ad615f38c2774da422 (diff) |
prevent warning for non-SSL builds
-rw-r--r-- | lib/ssluse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index 7419c4583..8a6b49ae6 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1249,8 +1249,8 @@ Curl_SSLConnect(struct connectdata *conn, X509_free(connssl->server_cert); #else /* USE_SSLEAY */ - /* this is for "-ansi -Wall -pedantic" to stop complaining! (rabe) */ - (void) conn; + (void)conn; + (void)sockindex; #endif return retcode; } |