Skip to content

Commit

Permalink
SERVER-15673 fix typo in backport
Browse files Browse the repository at this point in the history
  • Loading branch information
monkey101 committed Oct 28, 2014
1 parent 8b92428 commit 656f787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongo/util/net/ssl_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 656f787

Please sign in to comment.