Update block_cache.cpp

pull/5/head
SChernykh 2021-08-24 12:45:11 +02:00
parent 1cf4071f9b
commit 05d336c8e9
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ struct BlockCache::Impl
Impl()
{
m_fd = open(cache_name, O_RDWR | O_CREAT);
m_fd = open(cache_name, O_RDWR | O_CREAT, static_cast<mode_t>(0600));
if (m_fd == -1) {
LOGERR(1, "couldn't open/create " << cache_name);
return;