summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:08 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-17 19:43:08 +0000
commitbec7184768e6438c2e362c4e883a976c1565dc1d (patch)
tree60f5d436c6afc60e5fe67b8158a400e0a63d3d1b /ssl/ssl_lib.c
parent442ac8d25993b2fbdd801cae79a2e78612cfaf80 (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 231f87b307..15650da5e7 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1601,7 +1601,7 @@ SSL_CTX *SSL_CTX_new(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: