summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-21 06:56:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:03 -0500
commit4ce2cf2199c88f2845bf3bf861407642d6cd04d2 (patch)
treeee00600b2f862e8ac5acc2ea59da856d304f4f77 /source4/ntvfs/posix
parentad1c91250e3430a3262de405fbaf9da56e6e2610 (diff)
downloadsamba-4ce2cf2199c88f2845bf3bf861407642d6cd04d2.tar.gz
samba-4ce2cf2199c88f2845bf3bf861407642d6cd04d2.tar.bz2
samba-4ce2cf2199c88f2845bf3bf861407642d6cd04d2.zip
r4887: removed a bogus cast
(This used to be commit a034556faa5d15fee44a58be3aea8aee8ffae3c8)
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r--source4/ntvfs/posix/pvfs_xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_xattr.c b/source4/ntvfs/posix/pvfs_xattr.c
index ca535db168..c930fcbd68 100644
--- a/source4/ntvfs/posix/pvfs_xattr.c
+++ b/source4/ntvfs/posix/pvfs_xattr.c
@@ -131,7 +131,7 @@ static NTSTATUS pvfs_xattr_ndr_save(struct pvfs_state *pvfs,
DATA_BLOB blob;
NTSTATUS status;
- status = ndr_push_struct_blob(&blob, mem_ctx, p, (ndr_push_flags_fn_t)push_fn);
+ status = ndr_push_struct_blob(&blob, mem_ctx, p, push_fn);
if (!NT_STATUS_IS_OK(status)) {
talloc_free(mem_ctx);
return status;