summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:56 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:56 +0000
commit7512141162bd476e8fdfbf1e7db188fb947ee482 (patch)
tree6cc1e2888ad12e782c831824bb505817c27e9bd4 /ssl
parentc2c49969e236058090c081e591272ea325ca49b6 (diff)
OR default SSL_OP_LEGACY_SERVER_CONNECT so existing options are preserved
Diffstat (limited to 'ssl')
-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 6142b08872..0f7a7f1dfc 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: