From 566f066a8dae5e2ac5ee633f781387cad6c686b7 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 30 Apr 2012 20:27:33 +1000 Subject: s4-libnet: Add mem_ctx to libnet_rpc_groupadd calls (bug #8889) --- source4/libnet/libnet_group.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/libnet/libnet_group.c') diff --git a/source4/libnet/libnet_group.c b/source4/libnet/libnet_group.c index 5fc3f2b12a3..c8a95d74a89 100644 --- a/source4/libnet/libnet_group.c +++ b/source4/libnet/libnet_group.c @@ -76,7 +76,7 @@ struct composite_context* libnet_CreateGroup_send(struct libnet_context *ctx, s->group_add.in.domain_handle = ctx->samr.handle; /* send the request */ - create_req = libnet_rpc_groupadd_send(ctx->samr.pipe, &s->group_add, monitor); + create_req = libnet_rpc_groupadd_send(ctx->samr.pipe, s, &s->group_add, monitor); if (composite_nomem(create_req, c)) return c; composite_continue(c, create_req, continue_rpc_group_added, c); @@ -101,7 +101,7 @@ static void continue_domain_opened(struct composite_context *ctx) s->group_add.in.domain_handle = s->ctx->samr.handle; /* send the request */ - create_req = libnet_rpc_groupadd_send(s->ctx->samr.pipe, &s->group_add, + create_req = libnet_rpc_groupadd_send(s->ctx->samr.pipe, s, &s->group_add, s->monitor_fn); if (composite_nomem(create_req, c)) return; -- cgit v1.2.1