diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-05-11 05:16:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-05-11 05:16:38 +0000 |
commit | d9e14408f0e113a6056d4bde95cda6d0daee60f5 (patch) | |
tree | e9475454d5c3fbd2445b046d02f1b476a493c10b | |
parent | c9c5ce23652db79f36925c1509a15ddf4f665422 (diff) |
silence warning
-rw-r--r-- | lib/sslgen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c index f8f8ec622..641131571 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -568,6 +568,7 @@ int Curl_ssl_check_cxn(struct connectdata *conn) #ifdef USE_SSLEAY return Curl_ossl_check_cxn(conn); #else + (void)conn; /* TODO: we lack implementation of this for GnuTLS */ return -1; /* connection status unknown */ #endif /* USE_SSLEAY */ |