summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-11-10 20:18:01 -0800
committerJeremy Allison <jra@samba.org>2008-11-10 20:18:01 -0800
commitd6be0ba672c5543ed9e7aa2d11dd1e26a3494649 (patch)
tree9d2a195ad6beebce8260ecfba139c6640dffa0e7 /source3
parent8076e50fad6346e3ca6e18a044ea01b31ca182dd (diff)
downloadsamba-d6be0ba672c5543ed9e7aa2d11dd1e26a3494649.tar.gz
samba-d6be0ba672c5543ed9e7aa2d11dd1e26a3494649.tar.bz2
samba-d6be0ba672c5543ed9e7aa2d11dd1e26a3494649.zip
Fix the build (ndr_pull_struct_blob has a different signature in master).
Jeremy.
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/vfs_acl_tdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c
index be49bb798c..6deebf0ee6 100644
--- a/source3/modules/vfs_acl_tdb.c
+++ b/source3/modules/vfs_acl_tdb.c
@@ -112,7 +112,7 @@ static NTSTATUS parse_acl_blob(const DATA_BLOB *pblob,
enum ndr_err_code ndr_err;
size_t sd_size;
- ndr_err = ndr_pull_struct_blob(pblob, ctx, &xacl,
+ ndr_err = ndr_pull_struct_blob(pblob, ctx, NULL, &xacl,
(ndr_pull_flags_fn_t)ndr_pull_xattr_NTACL);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {