summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/security_file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/security_file.cpp')
-rw-r--r--src/mongo/db/auth/security_file.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/auth/security_file.cpp b/src/mongo/db/auth/security_file.cpp
index 04efa479fbc..0dc4bfafe23 100644
--- a/src/mongo/db/auth/security_file.cpp
+++ b/src/mongo/db/auth/security_file.cpp
@@ -74,8 +74,8 @@ StatusWith<std::vector<std::string>> readSecurityFile(const std::string& filenam
// check obvious file errors
if (stat(filename.c_str(), &stats) == -1) {
return Status(ErrorCodes::InvalidPath,
- str::stream() << "Error reading file " << filename << ": "
- << strerror(errno));
+ str::stream()
+ << "Error reading file " << filename << ": " << strerror(errno));
}
#if !defined(_WIN32)