Add me as co-author.
authorBruno Haible <bruno@clisp.org>
Sun, 8 Jun 2008 21:55:37 +0000 (23:55 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 8 Jun 2008 21:58:17 +0000 (23:58 +0200)
ChangeLog
lib/acl-internal.h
lib/copy-acl.c
lib/file-has-acl.c
lib/set-mode-acl.c

index 8f3db0f..07026ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2008-06-08  Bruno Haible  <bruno@clisp.org>
 
+       * lib/acl-internal.h: Add me as co-author.
+       * lib/file-has-acl.c: Likewise.
+       * lib/set-mode-acl.c: Likewise.
+       * lib/copy-acl.c: Likewise.
+
+2008-06-08  Bruno Haible  <bruno@clisp.org>
+
        Add support for AIX ACLs.
        * lib/acl-internal.h (acl_nontrivial): New declaration.
        * lib/file-has-acl.c (acl_nontrivial): New function.
index 74d67ae..b365af6 100644 (file)
@@ -15,7 +15,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-   Written by Paul Eggert and Andreas Gruenbacher.  */
+   Written by Paul Eggert, Andreas Grünbacher, and Bruno Haible.  */
 
 #include "acl.h"
 
index 780865c..0f5931b 100644 (file)
@@ -15,7 +15,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-   Written by Paul Eggert and Andreas Gruenbacher.  */
+   Written by Paul Eggert, Andreas Grünbacher, and Bruno Haible.  */
 
 #include <config.h>
 
@@ -57,7 +57,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
       if (ACL_NOT_WELL_SUPPORTED (errno))
        return qset_acl (dst_name, dest_desc, mode);
       else
-        return -2;
+       return -2;
     }
 
   if (HAVE_ACL_SET_FD && dest_desc != -1)
@@ -69,7 +69,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
       int saved_errno = errno;
 
       if (ACL_NOT_WELL_SUPPORTED (errno) && !acl_access_nontrivial (acl))
-        {
+       {
          acl_free (acl);
          return chmod_or_fchmod (dst_name, dest_desc, mode);
        }
@@ -108,7 +108,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
          return -1;
        }
       else
-        acl_free (acl);
+       acl_free (acl);
     }
   return 0;
 
@@ -144,7 +144,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
       if (ACL_NOT_WELL_SUPPORTED (errno))
        return qset_acl (dst_name, dest_desc, mode);
       else
-        return -2;
+       return -2;
     }
 
   if (HAVE_ACL_SET_FD && dest_desc != -1)
@@ -156,7 +156,7 @@ qcopy_acl (const char *src_name, int source_desc, const char *dst_name,
       int saved_errno = errno;
 
       if (ACL_NOT_WELL_SUPPORTED (errno) && !acl_extended_nontrivial (acl))
-        {
+       {
          acl_free (acl);
          return chmod_or_fchmod (dst_name, dest_desc, mode);
        }
index 37a0ee1..9589db9 100644 (file)
@@ -15,7 +15,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-   Written by Paul Eggert and Andreas Gruenbacher.  */
+   Written by Paul Eggert, Andreas Grünbacher, and Bruno Haible.  */
 
 #include <config.h>
 
index 7ef39cf..6aa708c 100644 (file)
@@ -15,7 +15,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-   Written by Paul Eggert and Andreas Gruenbacher.  */
+   Written by Paul Eggert and Andreas Gruenbacher, and Bruno Haible.  */
 
 #include <config.h>
 
@@ -131,7 +131,7 @@ qset_acl (char const *name, int desc, mode_t mode)
   if (mode & (S_ISUID | S_ISGID | S_ISVTX))
     {
       /* We did not call chmod so far, so the special bits have not yet
-         been set.  */
+        been set.  */
       return chmod_or_fchmod (name, desc, mode);
     }
   return 0;
@@ -304,11 +304,11 @@ qset_acl (char const *name, int desc, mode_t mode)
        return -1;
       }
   }
-  
+
   if (!MODE_INSIDE_ACL || (mode & (S_ISUID | S_ISGID | S_ISVTX)))
     {
       /* We did not call chmod so far, so the special bits have not yet
-         been set.  */
+        been set.  */
       return chmod_or_fchmod (name, desc, mode);
     }
   return 0;
@@ -348,7 +348,7 @@ qset_acl (char const *name, int desc, mode_t mode)
        return chmod_or_fchmod (name, desc, mode);
       return -1;
     }
-  
+
   if (mode & (S_ISUID | S_ISGID | S_ISVTX))
     {
       /* We did not call chmod so far, so the special bits have not yet