diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-01-17 23:08:38 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-01-17 23:08:38 +0000 |
commit | 241310bbac2225eb7307a50f153cc55d23ea7fa7 (patch) | |
tree | ad9dd853e8ae911252b9b94b57b551aeedb73873 /src/common/tortls.c | |
parent | 2be4f537f7f5d521ce7bcbb71e0a68efd7cfbcb4 (diff) | |
download | tor-241310bbac2225eb7307a50f153cc55d23ea7fa7.tar.gz tor-241310bbac2225eb7307a50f153cc55d23ea7fa7.zip |
Split 0119_PARANOIA into 0119_PARANOIA_[ABC]. A is "this is suspicious, and we have not tried running without this yet". B is "this is suspicious, but the last time we tested, it was okay." C is "How could this possibly be the cause?"
svn:r5840
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 7a41a931f7..fa5d878415 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -363,7 +363,7 @@ tor_tls_context_new(crypto_pk_env_t *identity, goto error; SSL_CTX_set_options(*ctx, SSL_OP_NO_SSLv2); #endif -#ifndef ENABLE_0119_PARANOIA +#ifndef ENABLE_0119_PARANOIA_A SSL_CTX_set_options(*ctx, SSL_OP_SINGLE_DH_USE); #endif if (!SSL_CTX_set_cipher_list(*ctx, CIPHER_LIST)) |