diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-06-27 21:25:00 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-27 21:25:00 -0500 |
commit | 65c09beaf75c43d57993a317f6448cb42b88c2bb (patch) | |
tree | d8efcce3ce14f8d7fa5552baa8c1de4c3259040f /src | |
parent | Merge pull request #4068 (diff) | |
parent | util: fix mistakes made in #3994 (diff) | |
download | monero-65c09beaf75c43d57993a317f6448cb42b88c2bb.tar.xz |
Merge pull request #4069
49dc78d util: fix mistakes made in #3994 (stoffu)
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index eed6fd8d2..7d9d7b408 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -226,19 +226,19 @@ namespace tools MERROR("Failed to open " << filename << ": " << std::error_code(GetLastError(), std::system_category())); } #else - m_fd = open(filename, O_RDONLY | O_CREAT, 0666); + m_fd = open(filename.c_str(), O_RDONLY | O_CREAT, 0666); if (m_fd != -1) { if (flock(m_fd, LOCK_EX | LOCK_NB) == -1) { - MERROR("Failed to lock " << filename << ": " << std::strerr(errno)); + MERROR("Failed to lock " << filename << ": " << std::strerror(errno)); close(m_fd); m_fd = -1; } } else { - MERROR("Failed to open " << filename << ": " << std::strerr(errno)); + MERROR("Failed to open " << filename << ": " << std::strerror(errno)); } #endif } |