summaryrefslogtreecommitdiffstats
path: root/source4/libnet
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-01-14 12:11:17 +0100
committerGünther Deschner <gd@samba.org>2014-01-16 16:22:51 +0100
commit7a97662bb53e8b048a02fec79d167f2466f4233f (patch)
tree6a8ab73228a47b580f0afe115cbfb2928a21fdfd /source4/libnet
parent1c6a2f8bca06d34fd14f498a09948875ad049d7c (diff)
downloadsamba-7a97662bb53e8b048a02fec79d167f2466f4233f.tar.gz
samba-7a97662bb53e8b048a02fec79d167f2466f4233f.tar.xz
samba-7a97662bb53e8b048a02fec79d167f2466f4233f.zip
s4:libnet: let libnet_rpc_groupadd() take tevent_context/dcerpc_binding_handle
This avoids usage/dereferencing 'struct dcerpc_pipe'. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
Diffstat (limited to 'source4/libnet')
-rw-r--r--source4/libnet/groupman.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/libnet/groupman.c b/source4/libnet/groupman.c
index 60b6aeb6b31..0bd7320ead5 100644
--- a/source4/libnet/groupman.c
+++ b/source4/libnet/groupman.c
@@ -127,13 +127,14 @@ static void continue_groupadd_created(struct tevent_req *subreq)
}
-NTSTATUS libnet_rpc_groupadd(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
+NTSTATUS libnet_rpc_groupadd(struct tevent_context *ev,
+ struct dcerpc_binding_handle *b,
+ TALLOC_CTX *mem_ctx,
struct libnet_rpc_groupadd *io)
{
struct composite_context *c;
- c = libnet_rpc_groupadd_send(mem_ctx, p->conn->event_ctx,
- p->binding_handle, io, NULL);
+ c = libnet_rpc_groupadd_send(mem_ctx, ev, b, io, NULL);
return libnet_rpc_groupadd_recv(c, mem_ctx, io);
}