mirror of
https://github.com/samba-team/samba.git
synced 2025-09-06 17:44:20 +03:00
Fix shadow parameter warning in free_empty_sys_acl()
(This used to be commit 7345bca285
)
This commit is contained in:
@@ -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;
|
SMB_ACL_ENTRY_T entry;
|
||||||
|
|
||||||
if (!acl)
|
if (!the_acl)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (conn->vfs_ops.sys_acl_get_entry(conn, acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
|
if (conn->vfs_ops.sys_acl_get_entry(conn, the_acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
|
||||||
conn->vfs_ops.sys_acl_free_acl(conn, acl);
|
conn->vfs_ops.sys_acl_free_acl(conn, the_acl);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return acl;
|
return the_acl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
Reference in New Issue
Block a user