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 8f3db0f71c8afbb8e954951187d6ba6136b88c7f..07026ff149f07239b3a6898cac44a430f98eaf2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
index 74d67aeb8c5f26d7f46da2b0334cca9ffc96827c..b365af687a74a2185bc352b09db888d5eb89b385 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 780865cef0d1bec80f9847a1645888166a17c688..0f5931bc3c44d0bc58bba7d192c8605fd773ae33 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 37a0ee1cd1adc5f0dbdc75a3299825df341b2403..9589db9656dec234413ae4b5193950de6688d03f 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 7ef39cfa2d7166489799ef5d7cc5552270459a3e..6aa708c2cc5df5ad34d9d2ca70be804ff4881dc6 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