summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser/options_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/options_parser/options_parser.cpp')
-rw-r--r--src/mongo/util/options_parser/options_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/options_parser/options_parser.cpp b/src/mongo/util/options_parser/options_parser.cpp
index 315c62dd448..ad51118032b 100644
--- a/src/mongo/util/options_parser/options_parser.cpp
+++ b/src/mongo/util/options_parser/options_parser.cpp
@@ -1444,9 +1444,9 @@ Status OptionsParser::readConfigFile(const std::string& filename,
#ifdef _WIN32
// The checks below are only performed on POSIX systems
// due to differing permission models.
- auto fdguard = makeGuard([&fd] { ::_close(fd); });
+ ScopeGuard fdguard([&fd] { ::_close(fd); });
#else
- auto fdguard = makeGuard([&fd] { ::close(fd); });
+ ScopeGuard fdguard([&fd] { ::close(fd); });
if (configExpand.rest) {
auto status = checkFileOwnershipAndMode(fd, S_IRGRP | S_IROTH, "readable"_sd);