Loading src/client/gkfs_functions.cpp +5 −1 Original line number Diff line number Diff line Loading @@ -1347,7 +1347,11 @@ gkfs_rmdir(const std::string& path) { errno = ENOTEMPTY; return -1; } if(gkfs::config::proxy::fwd_remove && CTX->use_proxy()) { err = gkfs::rpc::forward_remove_proxy(path); } else { err = gkfs::rpc::forward_remove(path, CTX->get_replicas()); } if(err) { errno = err; return -1; Loading Loading
src/client/gkfs_functions.cpp +5 −1 Original line number Diff line number Diff line Loading @@ -1347,7 +1347,11 @@ gkfs_rmdir(const std::string& path) { errno = ENOTEMPTY; return -1; } if(gkfs::config::proxy::fwd_remove && CTX->use_proxy()) { err = gkfs::rpc::forward_remove_proxy(path); } else { err = gkfs::rpc::forward_remove(path, CTX->get_replicas()); } if(err) { errno = err; return -1; Loading