diff options
author | Günther Deschner <gd@samba.org> | 2008-09-24 01:40:13 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-24 01:40:52 +0200 |
commit | 61a45c85dec8e65ba9782c3ec4af0e9a42895eb3 (patch) | |
tree | 630f55a2512b55e802d1b4b66cfbf7c1dc558919 /source3 | |
parent | 3807b30f4403ade3c0c044e2bd88316b3d61a4e6 (diff) | |
download | samba-61a45c85dec8e65ba9782c3ec4af0e9a42895eb3.tar.gz samba-61a45c85dec8e65ba9782c3ec4af0e9a42895eb3.tar.bz2 samba-61a45c85dec8e65ba9782c3ec4af0e9a42895eb3.zip |
s3: fix make everything.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/librpc/tools/ndrdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/tools/ndrdump.c b/source3/librpc/tools/ndrdump.c index dc7f2be32f..08b969ae76 100644 --- a/source3/librpc/tools/ndrdump.c +++ b/source3/librpc/tools/ndrdump.c @@ -294,7 +294,7 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug blob.data = data; blob.length = size; - ndr_pull = ndr_pull_init_blob(&blob, mem_ctx); + ndr_pull = ndr_pull_init_blob(&blob, mem_ctx, NULL); ndr_pull->flags |= LIBNDR_FLAG_REF_ALLOC; ndr_err = f->ndr_pull(ndr_pull, NDR_IN, st); @@ -331,7 +331,7 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug blob.data = data; blob.length = size; - ndr_pull = ndr_pull_init_blob(&blob, mem_ctx); + ndr_pull = ndr_pull_init_blob(&blob, mem_ctx, NULL); ndr_pull->flags |= LIBNDR_FLAG_REF_ALLOC; ndr_err = f->ndr_pull(ndr_pull, flags, st); @@ -385,7 +385,7 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug dump_data(0, v_blob.data, v_blob.length); } - ndr_v_pull = ndr_pull_init_blob(&v_blob, mem_ctx); + ndr_v_pull = ndr_pull_init_blob(&v_blob, mem_ctx, NULL); ndr_v_pull->flags |= LIBNDR_FLAG_REF_ALLOC; ndr_err = f->ndr_pull(ndr_v_pull, flags, v_st); |