diff options
author | Roger Dingledine <arma@torproject.org> | 2006-06-07 02:57:23 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-06-07 02:57:23 +0000 |
commit | 7512be0b650198b074345b562dbe0c4edc74653a (patch) | |
tree | 67bfd4d5d2075a3ed300680a880df4b9b717589e /src/common | |
parent | 96914760bc32a6ee9ed49218a9fbd020588f783b (diff) | |
download | tor-7512be0b650198b074345b562dbe0c4edc74653a.tar tor-7512be0b650198b074345b562dbe0c4edc74653a.tar.gz |
looks like we missed a piece of the 0.1.1.9 paranoia code.
hopefully this change is a no-op.
svn:r6556
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 4c3108ad8..c9f3e67a7 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -363,9 +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_A SSL_CTX_set_options(*ctx, SSL_OP_SINGLE_DH_USE); -#endif if (!SSL_CTX_set_cipher_list(*ctx, CIPHER_LIST)) goto error; if (!client_only) { |