Browse Source

branch2.cpp

toml4
Antonio SJ Musumeci 10 months ago
parent
commit
eb5d11d74c
  1. 2
      src/branch2.cpp

2
src/branch2.cpp

@ -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);
}
Loading…
Cancel
Save