mirror of
https://github.com/restic/restic.git
synced 2024-12-23 08:16:36 +00:00
fuse: Show link count
This commit is contained in:
parent
6300c8df56
commit
6275d69a36
1 changed files with 1 additions and 0 deletions
|
@ -74,6 +74,7 @@ func (f *file) Attr(ctx context.Context, a *fuse.Attr) error {
|
|||
a.Size = f.node.Size
|
||||
a.Blocks = (f.node.Size / blockSize) + 1
|
||||
a.BlockSize = blockSize
|
||||
a.Nlink = uint32(f.node.Links)
|
||||
|
||||
if !f.ownerIsRoot {
|
||||
a.Uid = f.node.UID
|
||||
|
|
Loading…
Reference in a new issue