mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
ignore when listxattr fails with ENODATA
This happens on CIFS and means the remote filesystem has no extended attributes.
This commit is contained in:
parent
f72c907ad8
commit
5b19a6663b
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ static void canonicalisePathMetaData_(const Path & path, uid_t fromUid, InodesSe
|
||||||
ssize_t eaSize = llistxattr(path.c_str(), nullptr, 0);
|
ssize_t eaSize = llistxattr(path.c_str(), nullptr, 0);
|
||||||
|
|
||||||
if (eaSize < 0) {
|
if (eaSize < 0) {
|
||||||
if (errno != ENOTSUP)
|
if (errno != ENOTSUP && errno != ENODATA)
|
||||||
throw SysError("querying extended attributes of '%s'", path);
|
throw SysError("querying extended attributes of '%s'", path);
|
||||||
} else if (eaSize > 0) {
|
} else if (eaSize > 0) {
|
||||||
std::vector<char> eaBuf(eaSize);
|
std::vector<char> eaBuf(eaSize);
|
||||||
|
|
Loading…
Reference in a new issue