2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

fuse: Show link count

This commit is contained in:
Alexander Neumann 2017-02-10 21:16:48 +01:00
parent 6300c8df56
commit 6275d69a36

View File

@ -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