fusefrontend: use O_RDONLY in the ListXAttr fallback path
Copy-paste error. https://github.com/rfjakob/gocryptfs/issues/308
This commit is contained in:
parent
352f3147c5
commit
0fd7637624
@ -132,7 +132,7 @@ func (fs *FS) ListXAttr(relPath string, context *fuse.Context) ([]string, fuse.S
|
||||
cNames, err = syscallcompat.Llistxattr(procPath)
|
||||
} else {
|
||||
// O_NONBLOCK to not block on FIFOs.
|
||||
fd, err2 := fs.openBackingFile(relPath, syscall.O_WRONLY|syscall.O_NONBLOCK)
|
||||
fd, err2 := fs.openBackingFile(relPath, syscall.O_RDONLY|syscall.O_NONBLOCK)
|
||||
// On a symlink, openBackingFile fails with ELOOP. Let's pretend there
|
||||
// can be no xattrs on symlinks, and always return an empty result.
|
||||
if err2 == syscall.ELOOP {
|
||||
|
Loading…
Reference in New Issue
Block a user