summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine_lock_file_windows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/storage_engine_lock_file_windows.cpp')
-rw-r--r--src/mongo/db/storage/storage_engine_lock_file_windows.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/storage/storage_engine_lock_file_windows.cpp b/src/mongo/db/storage/storage_engine_lock_file_windows.cpp
index 0016f8f0873..24d87a548ec 100644
--- a/src/mongo/db/storage/storage_engine_lock_file_windows.cpp
+++ b/src/mongo/db/storage/storage_engine_lock_file_windows.cpp
@@ -40,6 +40,7 @@
#include "mongo/platform/process_id.h"
#include "mongo/util/log.h"
#include "mongo/util/mongoutils/str.h"
+#include "mongo/util/text.h"
namespace mongo {
@@ -113,7 +114,7 @@ Status StorageEngineLockFile::open() {
<< ex.what());
}
- HANDLE lockFileHandle = CreateFileA(_filespec.c_str(),
+ HANDLE lockFileHandle = CreateFileW(toNativeString(_filespec.c_str()).c_str(),
GENERIC_READ | GENERIC_WRITE,
0 /* do not allow anyone else access */,
NULL,