diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-10-23 16:13:28 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-10-23 09:29:18 +0200 |
commit | 60a06ff09cb62d4102a89194ce8fef5c4c5a2f16 (patch) | |
tree | f530ec150058c22713358290d38fdd72d0f33f14 | |
parent | bd099c49f816f8f7faad7da34370bcec2d59a0aa (diff) | |
download | samba-60a06ff09cb62d4102a89194ce8fef5c4c5a2f16.tar.gz |
vfs: Fix compilation of ACL support on solaris
-rw-r--r-- | source3/modules/vfs_solarisacl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/modules/vfs_solarisacl.h b/source3/modules/vfs_solarisacl.h index 84c2cb7ff7..20f1051bb5 100644 --- a/source3/modules/vfs_solarisacl.h +++ b/source3/modules/vfs_solarisacl.h @@ -22,10 +22,12 @@ SMB_ACL_T solarisacl_sys_acl_get_file(vfs_handle_struct *handle, const char *path_p, - SMB_ACL_TYPE_T type); + SMB_ACL_TYPE_T type, + TALLOC_CTX *mem_ctx); SMB_ACL_T solarisacl_sys_acl_get_fd(vfs_handle_struct *handle, - files_struct *fsp); + files_struct *fsp, + TALLOC_CTX *mem_ctx); int solarisacl_sys_acl_set_file(vfs_handle_struct *handle, const char *name, |