diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-18 11:01:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-09-26 15:52:45 -0400 |
commit | 194dbea24d1d05fa7b63b361b06054da4df011b9 (patch) | |
tree | 84c3551ccf2505915ea7ad644dbe74bbc3aacda5 /src/lib/tls/tortls_openssl.c | |
parent | 3283fd7e79913e25cd5e626d6bb3a12a05b2f3fc (diff) | |
download | tor-194dbea24d1d05fa7b63b361b06054da4df011b9.tar.gz tor-194dbea24d1d05fa7b63b361b06054da4df011b9.zip |
Run "make autostyle" with new "annotate_ifdef_directives"
Diffstat (limited to 'src/lib/tls/tortls_openssl.c')
-rw-r--r-- | src/lib/tls/tortls_openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/tls/tortls_openssl.c b/src/lib/tls/tortls_openssl.c index 86f0ac42cc..58a7b20dec 100644 --- a/src/lib/tls/tortls_openssl.c +++ b/src/lib/tls/tortls_openssl.c @@ -657,7 +657,7 @@ tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, if (r < 0) goto error; } -#else /* !(defined(SSL_CTX_set1_groups_list) || ...) */ +#else /* !(defined(SSL_CTX_set1_groups_list) || defined(HAVE_SSL_CTX_SET1... */ if (! is_client) { int nid; EC_KEY *ec_key; @@ -673,7 +673,7 @@ 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); } -#endif /* defined(SSL_CTX_set1_groups_list) || ...) */ +#endif /* defined(SSL_CTX_set1_groups_list) || defined(HAVE_SSL_CTX_SET1_... */ SSL_CTX_set_verify(result->ctx, SSL_VERIFY_PEER, always_accept_verify_cb); /* let us realloc bufs that we're writing from */ |