diff options
author | Robert Guo <robert.guo@10gen.com> | 2015-11-09 14:47:07 -0500 |
---|---|---|
committer | Robert Guo <robert.guo@10gen.com> | 2015-11-09 15:31:18 -0500 |
commit | 1e083524aecb31bb9e2682b6da813f76cf15223c (patch) | |
tree | 8b1eaf0a40bb11bb9c1ccb3623374b1a7bc6589c | |
parent | 3e437e53f0908112c557e07be06483e51bf0c0f7 (diff) | |
download | mongo-1e083524aecb31bb9e2682b6da813f76cf15223c.tar.gz |
SERVER-21348 fix typo in startup warnings
-rw-r--r-- | src/mongo/db/startup_warnings_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/startup_warnings_common.cpp b/src/mongo/db/startup_warnings_common.cpp index 40b18148eee..54af64faff5 100644 --- a/src/mongo/db/startup_warnings_common.cpp +++ b/src/mongo/db/startup_warnings_common.cpp @@ -70,7 +70,7 @@ void logCommonStartupWarnings(const ServerGlobalParams& serverParams) { << startupWarningsLog; log() << "** The web interfaces (rest, httpinterface and/or jsonp) are insecure " << startupWarningsLog; - log() << "** and should be disabled unless required for backward compatability." + log() << "** and should be disabled unless required for backward compatibility." << startupWarningsLog; warned = true; } |