branch2.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-01 23:58:55 -06:00
parent 7a4cf5c139
commit 63928dd555

View File

@ -33,7 +33,7 @@ Branch2::Branch2(toml::value const &v_)
{
enabled = v_.at("enabled").as_boolean();
mode = Mode::_from_string(toml::find<std::string>(v_,"mode").c_str());
min_free_space = toml::find<uint64_t>(v_,"min-free-space");
min_free_space = toml::find_or<uint64_t>(v_,"min-free-space",0);
path = toml::find<std::string>(v_,"path");
int const flags = O_DIRECTORY | O_PATH | O_NOATIME;