mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-02 13:33:39 +08:00
branch2.cpp
This commit is contained in:
parent
7a4cf5c139
commit
63928dd555
|
@ -33,7 +33,7 @@ Branch2::Branch2(toml::value const &v_)
|
||||||
{
|
{
|
||||||
enabled = v_.at("enabled").as_boolean();
|
enabled = v_.at("enabled").as_boolean();
|
||||||
mode = Mode::_from_string(toml::find<std::string>(v_,"mode").c_str());
|
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");
|
path = toml::find<std::string>(v_,"path");
|
||||||
|
|
||||||
int const flags = O_DIRECTORY | O_PATH | O_NOATIME;
|
int const flags = O_DIRECTORY | O_PATH | O_NOATIME;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user