1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s3: VFS: posixacl_xattr: Remove posixacl_xattr_acl_delete_def_file().

No longer used.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
This commit is contained in:
Jeremy Allison 2021-05-14 19:39:41 -07:00
parent 97821542d3
commit bf34438ef5
2 changed files with 0 additions and 10 deletions

View File

@ -512,13 +512,6 @@ int posixacl_xattr_acl_set_fd(vfs_handle_struct *handle,
return SMB_VFS_FSETXATTR(fsp, name, buf, size, 0);
}
int posixacl_xattr_acl_delete_def_file(vfs_handle_struct *handle,
const struct smb_filename *smb_fname)
{
return SMB_VFS_FREMOVEXATTR(smb_fname->fsp,
ACL_EA_DEFAULT);
}
int posixacl_xattr_acl_delete_def_fd(vfs_handle_struct *handle,
files_struct *fsp)
{

View File

@ -40,9 +40,6 @@ int posixacl_xattr_acl_set_fd(vfs_handle_struct *handle,
SMB_ACL_TYPE_T type,
SMB_ACL_T theacl);
int posixacl_xattr_acl_delete_def_file(vfs_handle_struct *handle,
const struct smb_filename *smb_fname);
int posixacl_xattr_acl_delete_def_fd(vfs_handle_struct *handle,
files_struct *fsp);
#endif