branch2.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-31 21:38:38 -06:00
parent 7129122fc3
commit eb5d11d74c

View File

@ -23,6 +23,6 @@ Branch2::Branch2(toml::value const &v_)
min_free_space = 0;
path = toml::find<std::string>(v_,"path");
int const flags = O_DIRECTORY | O_PATH;
int const flags = O_DIRECTORY | O_PATH | O_NOATIME;
fd = openat(AT_FDCWD,path.string().c_str(),flags);
}