summaryrefslogtreecommitdiff
path: root/src/mongo/db/server_options_test.cpp
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@10gen.com>2013-10-06 21:50:02 -0400
committerShaun Verch <shaun.verch@10gen.com>2013-10-06 21:50:02 -0400
commit0b40bfbd29511acf9f075df34c048b1b98cf0094 (patch)
treec0a16aa761fd00f4d0dff8ad8e3897e446a51a29 /src/mongo/db/server_options_test.cpp
parent678a83d64dcf14d5214c6bbc4c8477d8f9fd70db (diff)
downloadmongo-0b40bfbd29511acf9f075df34c048b1b98cf0094.tar.gz
SERVER-10742 Fix ssl compilation of server_options_test
Diffstat (limited to 'src/mongo/db/server_options_test.cpp')
-rw-r--r--src/mongo/db/server_options_test.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mongo/db/server_options_test.cpp b/src/mongo/db/server_options_test.cpp
index f72e7d052d8..e5cbb8e60e1 100644
--- a/src/mongo/db/server_options_test.cpp
+++ b/src/mongo/db/server_options_test.cpp
@@ -21,6 +21,13 @@
#include "mongo/util/options_parser/option_section.h"
#include "mongo/util/options_parser/options_parser.h"
+// These are stubs that we need now since we include mongocommon
+namespace mongo {
+ bool inShutdown() {
+ return false;
+ }
+}
+
namespace {
using mongo::ErrorCodes;