fix . and .. incorrectly being reported as files
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
This commit is contained in:
@@ -401,29 +401,29 @@ auto remote_fuse_drive::readdir_impl(std::string api_path, void *buf,
|
||||
if ((item_path == ".") || (item_path == "..")) {
|
||||
p_stat = std::make_unique<struct stat>();
|
||||
if (item_path == ".") {
|
||||
stat(get_mount_location().c_str(), p_stat.get());
|
||||
res = stat(get_mount_location().c_str(), p_stat.get());
|
||||
} else {
|
||||
stat(utils::path::get_parent_path(get_mount_location()).c_str(),
|
||||
p_stat.get());
|
||||
res = stat(utils::path::get_parent_path(get_mount_location()).c_str(),
|
||||
p_stat.get());
|
||||
}
|
||||
// p_stat->st_mode = S_IFDIR | 0755;
|
||||
// p_stat->st_nlink = 2;
|
||||
} else {
|
||||
item_path = utils::path::strip_to_file_name(item_path);
|
||||
}
|
||||
|
||||
if (res == 0) {
|
||||
#if FUSE_USE_VERSION >= 30
|
||||
if (fuse_fill_dir(buf, item_path.c_str(), p_stat.get(), ++offset,
|
||||
FUSE_FILL_DIR_PLUS) != 0) {
|
||||
if (fuse_fill_dir(buf, item_path.c_str(), p_stat.get(), ++offset,
|
||||
FUSE_FILL_DIR_PLUS) != 0) {
|
||||
#else // FUSE_USE_VERSION < 30
|
||||
if (fuse_fill_dir(buf, item_path.c_str(), p_stat.get(), ++offset) != 0) {
|
||||
if (fuse_fill_dir(buf, item_path.c_str(), p_stat.get(), ++offset) != 0) {
|
||||
#endif // FUSE_USE_VERSION >= 30
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (res == -120) {
|
||||
res = 0;
|
||||
if (res == -120) {
|
||||
res = 0;
|
||||
}
|
||||
}
|
||||
|
||||
return utils::to_api_error(res);
|
||||
|
Reference in New Issue
Block a user