Browse Source

mergerfs_api.cpp

webui
Antonio SJ Musumeci 1 week ago
parent
commit
9939e94d2e
  1. 7
      src/mergerfs_api.cpp

7
src/mergerfs_api.cpp

@ -58,7 +58,14 @@ std::string
get_kv(const fs::path &mountpoint_,
const std::string &key_)
{
std::string val;
fs::path cfgfile;
cfgfile = ::_mergerfs_config_file(mountpoint_);
fs::xattr::get(cfgfile,key_);
return val;
}
int

Loading…
Cancel
Save