summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authentication_session.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authentication_session.cpp')
-rw-r--r--src/mongo/db/auth/authentication_session.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/auth/authentication_session.cpp b/src/mongo/db/auth/authentication_session.cpp
index 6de2fe5d5ea..30d6f74fc31 100644
--- a/src/mongo/db/auth/authentication_session.cpp
+++ b/src/mongo/db/auth/authentication_session.cpp
@@ -41,7 +41,7 @@ namespace {
constexpr auto kDiagnosticLogLevel = 3;
Status crossVerifyUserNames(const UserName& oldUser, const UserName& newUser) noexcept {
- if (oldUser.getFullName().empty()) {
+ if (oldUser.empty()) {
return Status::OK();
}
@@ -53,7 +53,7 @@ Status crossVerifyUserNames(const UserName& oldUser, const UserName& newUser) no
return {ErrorCodes::ProtocolError,
str::stream()
<< "Attempt to switch database target during SASL authentication from "
- << oldUser.toString() << " to " << newUser.toString()};
+ << oldUser << " to " << newUser};
}
}
@@ -65,7 +65,7 @@ Status crossVerifyUserNames(const UserName& oldUser, const UserName& newUser) no
if (oldUser.getUser() != newUser.getUser()) {
return {ErrorCodes::ProtocolError,
str::stream() << "Attempt to switch user during SASL authentication from "
- << oldUser.toString() << " to " << newUser.toString()};
+ << oldUser << " to " << newUser};
}
return Status::OK();