summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_solarisacl.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-10-11 14:42:39 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-10-11 14:45:03 +1100
commita0588fdea82ab1b5d4dbd8bf75b01b82c0879d21 (patch)
treecdb6aa82beb8c57a4dfe6966ef4ad31e2029f26a /source3/modules/vfs_solarisacl.c
parent547a260a2865d547a4ffc756b21fa648349654fd (diff)
downloadsamba-a0588fdea82ab1b5d4dbd8bf75b01b82c0879d21.tar.gz
samba-a0588fdea82ab1b5d4dbd8bf75b01b82c0879d21.tar.bz2
samba-a0588fdea82ab1b5d4dbd8bf75b01b82c0879d21.zip
vfs: Fix alternative posix and no-op sys acl implementations to take a mem_ctx
These were missed with the initial conversion to use a talloc context. Andrew Bartlett
Diffstat (limited to 'source3/modules/vfs_solarisacl.c')
-rw-r--r--source3/modules/vfs_solarisacl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c
index a5f787f494..dd5fe82cfa 100644
--- a/source3/modules/vfs_solarisacl.c
+++ b/source3/modules/vfs_solarisacl.c
@@ -120,7 +120,7 @@ SMB_ACL_T solarisacl_sys_acl_get_fd(vfs_handle_struct *handle,
* access acl. So we need to filter this out here.
*/
result = solaris_acl_to_smb_acl(solaris_acl, count,
- SMB_ACL_TYPE_ACCESS);
+ SMB_ACL_TYPE_ACCESS, mem_ctx);
if (result == NULL) {
DEBUG(10, ("conversion solaris_acl -> smb_acl failed (%s).\n",
strerror(errno)));