diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-01-05 14:53:13 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-01-10 18:46:22 +1100 |
commit | 26bae894f2ae898c51535dda14060ecf4786c6ec (patch) | |
tree | d6d95a29ce4e3c48323dc43ff13935eb16925b7d /source3/modules | |
parent | 9dfd0a0dc980b521905399e0b409cb81fbbe6b37 (diff) | |
download | samba-26bae894f2ae898c51535dda14060ecf4786c6ec.tar.gz samba-26bae894f2ae898c51535dda14060ecf4786c6ec.tar.bz2 samba-26bae894f2ae898c51535dda14060ecf4786c6ec.zip |
vfs: Fix compilation of solaris ACL module
Andrew Bartlett
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_solarisacl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c index dd5fe82cfa..9b3c4f60a5 100644 --- a/source3/modules/vfs_solarisacl.c +++ b/source3/modules/vfs_solarisacl.c @@ -300,7 +300,7 @@ int solarisacl_sys_acl_delete_def_file(vfs_handle_struct *handle, DEBUG(10, ("entering solarisacl_sys_acl_delete_def_file.\n")); smb_acl = solarisacl_sys_acl_get_file(handle, path, - SMB_ACL_TYPE_ACCESS); + SMB_ACL_TYPE_ACCESS, talloc_tos()); if (smb_acl == NULL) { DEBUG(10, ("getting file acl failed!\n")); goto done; |