summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authorization_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authorization_manager.cpp')
-rw-r--r--src/mongo/db/auth/authorization_manager.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mongo/db/auth/authorization_manager.cpp b/src/mongo/db/auth/authorization_manager.cpp
index df65782689e..046ed24a1bc 100644
--- a/src/mongo/db/auth/authorization_manager.cpp
+++ b/src/mongo/db/auth/authorization_manager.cpp
@@ -69,8 +69,8 @@ using std::vector;
AuthInfo internalSecurity;
-MONGO_INITIALIZER_WITH_PREREQUISITES(SetupInternalSecurityUser,
- MONGO_NO_PREREQUISITES)(InitializerContext* context) {
+MONGO_INITIALIZER_WITH_PREREQUISITES(SetupInternalSecurityUser, MONGO_NO_PREREQUISITES)
+(InitializerContext* context) {
User* user = new User(UserName("__system", "local"));
user->incrementRefCount(); // Pin this user so the ref count never drops below 1.
@@ -381,7 +381,8 @@ Status AuthorizationManager::_initializeUserFromPrivilegeDocument(User* user,
mongoutils::str::stream() << "User name from privilege document \""
<< userName
<< "\" doesn't match name of provided User \""
- << user->getName().getUser() << "\"",
+ << user->getName().getUser()
+ << "\"",
0);
}
@@ -484,7 +485,8 @@ Status AuthorizationManager::acquireUser(OperationContext* txn,
case schemaVersion24:
status = Status(ErrorCodes::AuthSchemaIncompatible,
mongoutils::str::stream()
- << "Authorization data schema version " << schemaVersion24
+ << "Authorization data schema version "
+ << schemaVersion24
<< " not supported after MongoDB version 2.6.");
break;
}
@@ -669,7 +671,8 @@ StatusWith<UserName> extractUserNameFromIdString(StringData idstr) {
return StatusWith<UserName>(ErrorCodes::FailedToParse,
mongoutils::str::stream()
<< "_id entries for user documents must be of "
- "the form <dbname>.<username>. Found: " << idstr);
+ "the form <dbname>.<username>. Found: "
+ << idstr);
}
return StatusWith<UserName>(
UserName(idstr.substr(splitPoint + 1), idstr.substr(0, splitPoint)));
@@ -702,7 +705,8 @@ void AuthorizationManager::_invalidateRelevantCacheData(const char* op,
if (!userName.isOK()) {
warning() << "Invalidating user cache based on user being updated failed, will "
- "invalidate the entire cache instead: " << userName.getStatus() << endl;
+ "invalidate the entire cache instead: "
+ << userName.getStatus() << endl;
invalidateUserCache();
return;
}