summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Pasette <dan@10gen.com>2014-10-27 23:49:33 -0400
committerDan Pasette <dan@mongodb.com>2014-10-27 23:49:33 -0400
commit656f78711632a5dc37221422c99e3c4619bcc58f (patch)
treee2cbe03f32c10c897752cfe2ef29f26518d17502
parent8b9242837510e6410ddcf4f19969da4c7b01b2f7 (diff)
downloadmongo-656f78711632a5dc37221422c99e3c4619bcc58f.tar.gz
SERVER-15673 fix typo in backport
-rw-r--r--src/mongo/util/net/ssl_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/net/ssl_manager.cpp b/src/mongo/util/net/ssl_manager.cpp
index 0efdd7ced60..de49e3844d4 100644
--- a/src/mongo/util/net/ssl_manager.cpp
+++ b/src/mongo/util/net/ssl_manager.cpp
@@ -142,7 +142,7 @@ namespace mongo {
// Activate all bug workaround options, to support buggy client SSL's.
// SSL_OP_NO_SSLv2 - Disable SSL v2 support
// SSL_OP_NO_SSLv3 - Disable SSL v3 support
- SSL_CTX_set_options(*context, SSL_OP_ALL|SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3);
+ SSL_CTX_set_options(_context, SSL_OP_ALL|SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3);
// If renegotiation is needed, don't return from recv() or send() until it's successful.
// Note: this is for blocking sockets only.