Fix small mistake from 2008-06-01.
authorBruno Haible <bruno@clisp.org>
Wed, 4 Jun 2008 22:56:52 +0000 (00:56 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 4 Jun 2008 22:56:52 +0000 (00:56 +0200)
ChangeLog
lib/copy-acl.c

index 9260f75..6c165cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-06-04  Bruno Haible  <bruno@clisp.org>
 
+       * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
+       2008-06-01 commit.
+
+2008-06-04  Bruno Haible  <bruno@clisp.org>
+
        * lib/acl-internal.h (acl_access_nontrivial): New declaration.
        * lib/file-has-acl.c (acl_access_nontrivial): New function.
        (file_has_acl): Use it. Save errno afterwards.
index 743f6ec..3bb5187 100644 (file)
@@ -53,7 +53,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
   if (acl == NULL)
     {
       if (ACL_NOT_WELL_SUPPORTED (errno))
-       return set_acl (dst_name, dest_desc, mode);
+       return qset_acl (dst_name, dest_desc, mode);
       else
         return -2;
     }