Loading ifs/src/preload/adafs_functions.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -438,6 +438,10 @@ int adafs_opendir(const std::string& path) { int adafs_rmdir(const std::string& path) { auto md = adafs_metadata(path); if (md == nullptr) { errno = ENOENT; return -1; } if (!S_ISDIR(md->mode())) { CTX->log()->debug("{}() path is not a directory", __func__); Loading Loading
ifs/src/preload/adafs_functions.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -438,6 +438,10 @@ int adafs_opendir(const std::string& path) { int adafs_rmdir(const std::string& path) { auto md = adafs_metadata(path); if (md == nullptr) { errno = ENOENT; return -1; } if (!S_ISDIR(md->mode())) { CTX->log()->debug("{}() path is not a directory", __func__); Loading