Problem reported privately for FreeBSD 12 by Ashish Shukla.
* src/fileio.c (Ffile_acl): Treat EINVAL etc. like ENOTSUP if
acl_get_file fails, to port to FreeBSD 12 and other non-GNU
platforms.
acl_t acl = acl_get_file (SSDATA (ENCODE_FILE (absname)), ACL_TYPE_EXTENDED);
if (acl == NULL)
{
- if (errno == ENOENT || errno == ENOTDIR || errno == ENOTSUP)
+ if (errno == ENOENT || errno == ENOTDIR || acl_errno_valid (errno))
return Qnil;
report_file_error ("Getting ACLs", absname);
}