One last fix for a warning on non-EC systems

This commit is contained in:
Nick Mathewson 2012-12-25 22:12:18 -05:00
parent 3eb3900510
commit 68dae4cf35

View File

@ -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);