summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:46 +0000
commit8321bab39c4cb6ccbf507060de2302403eea7764 (patch)
tree17c6e0c145bb203659512e648e9a5cc6aad25666 /ssl/ssl_lib.c
parent989238802aa096c083dd78d0add49ef67dc073da (diff)
OR default SSL_OP_LEGACY_SERVER_CONNECT so existing options are preserved
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index b72a970648..3157f20eac 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1687,7 +1687,7 @@ SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
/* Default is to connect to non-RI servers. When RI is more widely
* deployed might change this.
*/
- ret->options = SSL_OP_LEGACY_SERVER_CONNECT;
+ ret->options |= SSL_OP_LEGACY_SERVER_CONNECT;
return(ret);
err: