diff options
author | Günther Deschner <gd@samba.org> | 2008-09-23 09:49:56 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-23 09:49:56 +0200 |
commit | fd3ba988dca5014a9a2d5636506265c084e5db97 (patch) | |
tree | 615be180d1ffd6fe16553623644aa925205496a9 /source3/utils | |
parent | 7f5aef542ae07e5b53a2372c41b6da4e1123459b (diff) | |
download | samba-fd3ba988dca5014a9a2d5636506265c084e5db97.tar.gz |
s3-nbt: fix remaining callers of ndr_push/pull_struct_blob.
Guenther
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc_registry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c index 124af00b57d..005e3ca5560 100644 --- a/source3/utils/net_rpc_registry.c +++ b/source3/utils/net_rpc_registry.c @@ -1186,7 +1186,7 @@ static NTSTATUS rpc_registry_getsd_internal(struct net_context *c, blob.data = sd->data; blob.length = sd->size; - ndr_err = ndr_pull_struct_blob(&blob, mem_ctx, &sec_desc, + ndr_err = ndr_pull_struct_blob(&blob, mem_ctx, NULL, &sec_desc, (ndr_pull_flags_fn_t)ndr_pull_security_descriptor); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { status = ndr_map_error2ntstatus(ndr_err); |