diff options
author | Günther Deschner <gd@samba.org> | 2008-09-23 20:43:41 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-23 23:35:14 +0200 |
commit | 022947097fb6bb84ff32e279bc65d73ac5c8eb8f (patch) | |
tree | 6dac901ab5491d8052f2540278eee3319f7b0fb9 /source3/librpc/rpc | |
parent | 5fa451ea84838ca9808e4090f541ea1bec7ec17c (diff) | |
download | samba-022947097fb6bb84ff32e279bc65d73ac5c8eb8f.tar.gz samba-022947097fb6bb84ff32e279bc65d73ac5c8eb8f.tar.bz2 samba-022947097fb6bb84ff32e279bc65d73ac5c8eb8f.zip |
s3-ndr: add stub smb_iconv_convenience to some ndr_ functions.
Guenther
Diffstat (limited to 'source3/librpc/rpc')
-rw-r--r-- | source3/librpc/rpc/binding.c | 2 | ||||
-rw-r--r-- | source3/librpc/rpc/dcerpc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/rpc/binding.c b/source3/librpc/rpc/binding.c index 01e3479c23..469c5db8d5 100644 --- a/source3/librpc/rpc/binding.c +++ b/source3/librpc/rpc/binding.c @@ -357,7 +357,7 @@ _PUBLIC_ NTSTATUS dcerpc_parse_binding(TALLOC_CTX *mem_ctx, const char *s, struc _PUBLIC_ NTSTATUS dcerpc_floor_get_lhs_data(struct epm_floor *epm_floor, struct ndr_syntax_id *syntax) { TALLOC_CTX *mem_ctx = talloc_init("floor_get_lhs_data"); - struct ndr_pull *ndr = ndr_pull_init_blob(&epm_floor->lhs.lhs_data, mem_ctx); + struct ndr_pull *ndr = ndr_pull_init_blob(&epm_floor->lhs.lhs_data, mem_ctx, NULL); enum ndr_err_code ndr_err; uint16_t if_version=0; diff --git a/source3/librpc/rpc/dcerpc.c b/source3/librpc/rpc/dcerpc.c index 58d676a9d9..7a870981fd 100644 --- a/source3/librpc/rpc/dcerpc.c +++ b/source3/librpc/rpc/dcerpc.c @@ -100,7 +100,7 @@ NTSTATUS dcerpc_ndr_request_recv(struct rpc_request *req) prs_mem_free( &r_ps ); - pull = ndr_pull_init_blob(&blob, req); + pull = ndr_pull_init_blob(&blob, req, NULL); if (pull == NULL) { return NT_STATUS_NO_MEMORY; } |