summaryrefslogtreecommitdiff
path: root/lib/qcopy-acl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/qcopy-acl.c')
-rw-r--r--lib/qcopy-acl.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/lib/qcopy-acl.c b/lib/qcopy-acl.c
index aac76a12432..bc258ba560b 100644
--- a/lib/qcopy-acl.c
+++ b/lib/qcopy-acl.c
@@ -437,20 +437,9 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
if (ret < 0 && saved_errno == 0)
{
saved_errno = errno;
- if (errno == ENOSYS || errno == EOPNOTSUPP || errno == ENOTSUP)
- {
- struct stat source_statbuf;
-
- if ((source_desc != -1
- ? fstat (source_desc, &source_statbuf)
- : stat (src_name, &source_statbuf)) == 0)
- {
- if (!acl_nontrivial (count, entries, &source_statbuf))
- saved_errno = 0;
- }
- else
- saved_errno = errno;
- }
+ if (errno == ENOSYS || errno == EOPNOTSUPP || errno == ENOTSUP
+ && !acl_nontrivial (count, entries))
+ saved_errno = 0;
}
else
did_chmod = 1;