Merge pull request #991 from trapexit/fix/symlink

Get attrs for link, not target
This commit is contained in:
trapexit 2021-12-16 19:35:18 -05:00 committed by GitHub
commit 34c684a4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,6 +155,6 @@ namespace FUSE
if(rv < 0)
return rv;
return FUSE::getattr(target_,st_,timeout_);
return FUSE::getattr(linkpath_,st_,timeout_);
}
}