Fix shadow parameter warning in free_empty_sys_acl()
authorTim Potter <tpot@samba.org>
Tue, 27 May 2003 06:55:06 +0000 (06:55 +0000)
committerTim Potter <tpot@samba.org>
Tue, 27 May 2003 06:55:06 +0000 (06:55 +0000)
(This used to be commit 1b2b7766c8fa89f46f4d1c881ee91c4b0b15773a)

source3/smbd/posix_acls.c

index 3824afe3c4770821fbb877b192635481eb80fc06..8da12b9b68036b29f26fed653f3d3a2f4f6a79df 100644 (file)
@@ -2097,17 +2097,17 @@ static struct canon_ace *canon_ace_entry_for(struct canon_ace *list, SMB_ACL_TAG
  
 ****************************************************************************/
 
-SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T acl)
+SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl)
 {
        SMB_ACL_ENTRY_T entry;
 
-       if (!acl)
+       if (!the_acl)
                return NULL;
-       if (SMB_VFS_SYS_ACL_GET_ENTRY(conn, acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
-               SMB_VFS_SYS_ACL_FREE_ACL(conn, acl);
+       if (SMB_VFS_SYS_ACL_GET_ENTRY(conn, the_acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
+               SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
                return NULL;
        }
-       return acl;
+       return the_acl;
 }
 
 /****************************************************************************