summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/copydb_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/copydb_common.cpp')
-rw-r--r--src/mongo/db/commands/copydb_common.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/copydb_common.cpp b/src/mongo/db/commands/copydb_common.cpp
index 5f033aede73..2a690ae0a17 100644
--- a/src/mongo/db/commands/copydb_common.cpp
+++ b/src/mongo/db/commands/copydb_common.cpp
@@ -69,8 +69,8 @@ Status checkAuthForCopydbCommand(ClientBasic* client,
actions.addAction(ActionType::bypassDocumentValidation);
}
- if (!AuthorizationSession::get(client)
- ->isAuthorizedForActionsOnResource(ResourcePattern::forDatabaseName(todb), actions)) {
+ if (!AuthorizationSession::get(client)->isAuthorizedForActionsOnResource(
+ ResourcePattern::forDatabaseName(todb), actions)) {
return Status(ErrorCodes::Unauthorized, "Unauthorized");
}