pxar::fuse: Do not return fcaps value on listxattr.
listxattr must only return the name list, no extended attribute values. Signed-off-by: Christian Ebner <c.ebner@proxmox.com> Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
5d2158e89a
commit
93a9eb284e
@ -727,10 +727,8 @@ impl Session {
|
|||||||
.map_err(|_| libc::EIO)?
|
.map_err(|_| libc::EIO)?
|
||||||
.ok_or_else(|| libc::EIO)?;
|
.ok_or_else(|| libc::EIO)?;
|
||||||
let mut buffer = Vec::new();
|
let mut buffer = Vec::new();
|
||||||
if let Some(ref fcaps) = entry.xattr.fcaps {
|
if entry.xattr.fcaps.is_some() {
|
||||||
buffer.extend_from_slice(b"security.capability\0");
|
buffer.extend_from_slice(b"security.capability\0");
|
||||||
buffer.extend_from_slice(&fcaps.data);
|
|
||||||
buffer.push(b'\0');
|
|
||||||
}
|
}
|
||||||
if entry.xattr.acl_default.is_some() {
|
if entry.xattr.acl_default.is_some() {
|
||||||
buffer.extend_from_slice(b"system.posix_acl_default\0");
|
buffer.extend_from_slice(b"system.posix_acl_default\0");
|
||||||
|
Loading…
Reference in New Issue
Block a user