| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Thanks to https://github.com/include-what-you-use/include-what-you-use
|
|
|
|
| |
From macOS find.
|
| |
|
|
|
|
|
|
| |
For default ACLs, any entries at all makes them non-trivial.
C.f.: https://lists.freebsd.org/pipermail/posix1e/2014-July/000517.html
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
acl_get_file() will return EINVAL on some platforms (e.g. FreeBSD,
macOS) when the requested ACL type is not supported for that file.
This fixes `bfs -acl` spewing "Invalid argument." for every file on
FreeBSD with ZFS where ACLs are NFSv4 and thus the POSIX.1e ones are not
supported.
|
| |
|
| |
|
|
Since we're going to want to abstract more things that aren't part of
POSIX.1e (like xattrs) in a similar way, let's give this a more generic
name. And while we're at it, give it some more precise error reporting,
and add some tests.
|