[tor-commits] [tor/master] Fix compilation with OpenSSL 1.1.0 --enable-gcc-warnings is set.

nickm at torproject.org nickm at torproject.org
Tue Nov 10 15:40:52 UTC 2015


commit 89cb2e467dd66d659cb9492e0b59c35f5d6bab57
Author: Yawning Angel <yawning at schwanenlied.me>
Date:   Fri Nov 6 19:12:43 2015 +0000

    Fix compilation with OpenSSL 1.1.0 --enable-gcc-warnings is set.
---
 src/test/test_tortls.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/test_tortls.c b/src/test/test_tortls.c
index 280e7fa..3352ed6 100644
--- a/src/test/test_tortls.c
+++ b/src/test/test_tortls.c
@@ -130,7 +130,6 @@ test_tortls_tor_tls_new(void *data)
   MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key);
   crypto_pk_t *key1 = NULL, *key2 = NULL;
   SSL_METHOD *method = NULL;
-  SSL_CTX *ctx = NULL;
 
   key1 = pk_generate(2);
   key2 = pk_generate(3);
@@ -148,7 +147,7 @@ test_tortls_tor_tls_new(void *data)
 
 #ifndef OPENSSL_OPAQUE
   method = give_me_a_test_method();
-  ctx = SSL_CTX_new(method);
+  SSL_CTX *ctx = SSL_CTX_new(method);
   method->num_ciphers = fake_num_ciphers;
   client_tls_context->ctx = ctx;
   tls = tor_tls_new(-1, 0);





More information about the tor-commits mailing list