summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_manager_external_state_d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authz_manager_external_state_d.cpp')
-rw-r--r--src/mongo/db/auth/authz_manager_external_state_d.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/db/auth/authz_manager_external_state_d.cpp b/src/mongo/db/auth/authz_manager_external_state_d.cpp
index 8a05514a45f..751ce2e2d57 100644
--- a/src/mongo/db/auth/authz_manager_external_state_d.cpp
+++ b/src/mongo/db/auth/authz_manager_external_state_d.cpp
@@ -47,7 +47,7 @@
#include "mongo/stdx/memory.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/log.h"
-#include "mongo/util/mongoutils/str.h"
+#include "mongo/util/str.h"
namespace mongo {
@@ -115,9 +115,8 @@ Status AuthzManagerExternalStateMongod::findOne(OperationContext* opCtx,
return Status::OK();
}
return Status(ErrorCodes::NoMatchingDocument,
- mongoutils::str::stream() << "No document in " << collectionName.ns()
- << " matches "
- << query);
+ str::stream() << "No document in " << collectionName.ns() << " matches "
+ << query);
}
MONGO_REGISTER_SHIM(AuthzManagerExternalState::create)