commit 68dae4cf3563e536e0693648cefcd0c69e512bff Author: Nick Mathewson nickm@torproject.org Date: Tue Dec 25 22:12:18 2012 -0500
One last fix for a warning on non-EC systems --- src/common/tortls.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/common/tortls.c b/src/common/tortls.c index f0c4c7d..1010425 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1386,6 +1386,8 @@ tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, SSL_CTX_set_tmp_ecdh(result->ctx, ec_key); EC_KEY_free(ec_key); } +#else + (void)flags; #endif SSL_CTX_set_verify(result->ctx, SSL_VERIFY_PEER, always_accept_verify_cb);
tor-commits@lists.torproject.org