mirror of
https://github.com/rclone/rclone.git
synced 2026-08-07 05:22:48 -04:00
mountlib: store only Node in *Dir removing DirEntry struct
This commit is contained in:
1 parent
8b6daaa877
commit
2fac74b517
4 files changed
+33
-56
No files matched your search
+1
-1
@@ -111,7 +111,7 @@ func (d *Dir) ReadDirAll(ctx context.Context) (dirents []fuse.Dirent, err error)
|
||||
}
|
||||
for _, item := range items {
|
||||
var dirent fuse.Dirent
|
||||
switch x := item.Obj.(type) {
|
||||
switch x := item.DirEntry().(type) {
|
||||
case fs.Object:
|
||||
dirent = fuse.Dirent{
|
||||
// Inode FIXME ???
|
||||
|
||||
Reference in new issue
Block a user