Switch to side-by-side view
--- a/src/utils/pathut.cpp +++ b/src/utils/pathut.cpp @@ -580,7 +580,7 @@ { const char *path = m_path.c_str(); if ((m_fd = ::open(path, O_RDWR|O_CREAT, 0644)) == -1) { - m_reason = "Open failed"; + m_reason = "Open failed: [" + m_path + "]: " + strerror(errno); return -1; }