diff options
author | Michael Adam <obnox@samba.org> | 2008-11-11 10:28:40 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-11-11 10:30:29 +0100 |
commit | dee2c61ce0a5ff2485f4a0704c9d7288ca75cb52 (patch) | |
tree | 097204af6afec6a383da734c1039f0dcfc798038 /source3/modules | |
parent | d6be0ba672c5543ed9e7aa2d11dd1e26a3494649 (diff) | |
download | samba-dee2c61ce0a5ff2485f4a0704c9d7288ca75cb52.tar.gz samba-dee2c61ce0a5ff2485f4a0704c9d7288ca75cb52.tar.bz2 samba-dee2c61ce0a5ff2485f4a0704c9d7288ca75cb52.zip |
[s3]vfs_acl_tdb: fix the build.
ndr_push_struct_blob has a different signature in master as well.
Michael
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_acl_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c index 6deebf0ee6..202c1a8469 100644 --- a/source3/modules/vfs_acl_tdb.c +++ b/source3/modules/vfs_acl_tdb.c @@ -222,7 +222,7 @@ static NTSTATUS create_acl_blob(const struct security_descriptor *psd, DATA_BLOB timestring(ctx, curr.tv_sec) )); ndr_err = ndr_push_struct_blob( - pblob, ctx, &xacl, + pblob, ctx, NULL, &xacl, (ndr_push_flags_fn_t)ndr_push_xattr_NTACL); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { |