diff options
Diffstat (limited to 'src/mongo/util/net/httpclient.cpp')
-rw-r--r-- | src/mongo/util/net/httpclient.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/util/net/httpclient.cpp b/src/mongo/util/net/httpclient.cpp index afb059f4d78..b96fae5029e 100644 --- a/src/mongo/util/net/httpclient.cpp +++ b/src/mongo/util/net/httpclient.cpp @@ -27,6 +27,8 @@ * then also delete it in the license file. */ +#include "mongo/config.h" + #include "mongo/platform/basic.h" #include "mongo/util/net/httpclient.h" @@ -120,7 +122,7 @@ namespace mongo { return -1; if ( ssl ) { -#ifdef MONGO_SSL +#ifdef MONGO_CONFIG_SSL // pointer to global singleton instance SSLManagerInterface* mgr = getSSLManager(); |