diff options
| author | Eli Zaretskii | 2019-10-06 19:54:58 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-10-06 19:54:58 +0300 |
| commit | 4638b5ce0ae80568ac3278a5d1ae67086bd7f616 (patch) | |
| tree | 809392955ca2c01104009357ea713e82b7ca222a /src | |
| parent | ad76020af8498d148984daf4de545d5d610d0589 (diff) | |
| parent | 8ad41af3a1a651e11c270b9bccc838aed5d0e0e7 (diff) | |
| download | emacs-4638b5ce0ae80568ac3278a5d1ae67086bd7f616.tar.gz emacs-4638b5ce0ae80568ac3278a5d1ae67086bd7f616.zip | |
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 45186d69401..781a71bcf35 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3248,7 +3248,7 @@ Return nil if file does not exist. */) | |||
| 3248 | acl_t acl = acl_get_file (SSDATA (ENCODE_FILE (absname)), ACL_TYPE_EXTENDED); | 3248 | acl_t acl = acl_get_file (SSDATA (ENCODE_FILE (absname)), ACL_TYPE_EXTENDED); |
| 3249 | if (acl == NULL) | 3249 | if (acl == NULL) |
| 3250 | { | 3250 | { |
| 3251 | if (errno == ENOENT || errno == ENOTDIR || errno == ENOTSUP) | 3251 | if (errno == ENOENT || errno == ENOTDIR || acl_errno_valid (errno)) |
| 3252 | return Qnil; | 3252 | return Qnil; |
| 3253 | report_file_error ("Getting ACLs", absname); | 3253 | report_file_error ("Getting ACLs", absname); |
| 3254 | } | 3254 | } |