Browse Source

Merge pull request #991 from trapexit/fix/symlink

Get attrs for link, not target
pull/997/head 2.33.2
trapexit 3 years ago
committed by GitHub
parent
commit
34c684a4f5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/fuse_symlink.cpp

2
src/fuse_symlink.cpp

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