From: Jeremy Allison Date: Tue, 8 Jun 2021 22:25:14 +0000 (-0700) Subject: s3: VFS: solarisacl: Make solarisacl_sys_acl_get_file() static. Still called internally. X-Git-Tag: tevent-0.11.0~486 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d24b6c7a21373454398bc28823518de5ed7e9707;p=thirdparty%2Fsamba.git s3: VFS: solarisacl: Make solarisacl_sys_acl_get_file() static. Still called internally. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c index 9e310d13bb5..146e932da25 100644 --- a/source3/modules/vfs_solarisacl.c +++ b/source3/modules/vfs_solarisacl.c @@ -62,7 +62,7 @@ static bool solaris_acl_check(SOLARIS_ACL_T solaris_acl, int count); /* public functions - the api */ -SMB_ACL_T solarisacl_sys_acl_get_file(vfs_handle_struct *handle, +static SMB_ACL_T solarisacl_sys_acl_get_file(vfs_handle_struct *handle, const struct smb_filename *smb_fname, SMB_ACL_TYPE_T type, TALLOC_CTX *mem_ctx) @@ -780,7 +780,6 @@ static bool solaris_acl_check(SOLARIS_ACL_T solaris_acl, int count) #endif static struct vfs_fn_pointers solarisacl_fns = { - .sys_acl_get_file_fn = solarisacl_sys_acl_get_file, .sys_acl_get_fd_fn = solarisacl_sys_acl_get_fd, .sys_acl_blob_get_file_fn = posix_sys_acl_blob_get_file, .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,