From 1b6ea7f97a0201ea8acf33e9654f52f069439928 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 8 Feb 2013 17:08:28 -0800 Subject: [PATCH] Fix bug #9642 - vfs_afsacl.c won't build. Add missing mem_ctx argument. Signed-off-by: Jeremy Allison --- source3/modules/vfs_afsacl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/modules/vfs_afsacl.c b/source3/modules/vfs_afsacl.c index 7d1895f..66e256c 100644 --- a/source3/modules/vfs_afsacl.c +++ b/source3/modules/vfs_afsacl.c @@ -700,7 +700,8 @@ static size_t afs_fto_nt_acl(struct afs_acl *afs_acl, return 0; } - return afs_to_nt_acl_common(afs_acl, &sbuf, security_info, ppdesc); + return afs_to_nt_acl_common(afs_acl, &sbuf, security_info, + mem_ctx, ppdesc); } static bool mappable_sid(const struct dom_sid *sid) -- 1.8.1