From 40cd2d778093d7799b27b6beb37166d8a53f965c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 16 May 2007 14:52:54 +0000 Subject: r22944: fix bug #4618: rename private -> private_data metze (This used to be commit 58551f2f28fce8f1fcd04736c47ecd7458f32ea2) --- source4/libnet/libnet_domain.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'source4/libnet/libnet_domain.c') diff --git a/source4/libnet/libnet_domain.c b/source4/libnet/libnet_domain.c index 1653bc8833..864141fffa 100644 --- a/source4/libnet/libnet_domain.c +++ b/source4/libnet/libnet_domain.c @@ -94,7 +94,7 @@ static void continue_domain_open_close(struct rpc_request *req) struct domain_open_samr_state *s; struct rpc_request *conn_req; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_open_samr_state); /* receive samr_Close reply */ @@ -130,7 +130,7 @@ static void continue_domain_open_connect(struct rpc_request *req) struct rpc_request *lookup_req; struct samr_LookupDomain *r; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_open_samr_state); /* receive samr_Connect reply */ @@ -160,7 +160,7 @@ static void continue_domain_open_lookup(struct rpc_request *req) struct rpc_request *opendom_req; struct samr_OpenDomain *r; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_open_samr_state); /* receive samr_LookupDomain reply */ @@ -198,7 +198,7 @@ static void continue_domain_open_open(struct rpc_request *req) struct composite_context *c; struct domain_open_samr_state *s; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_open_samr_state); /* receive samr_OpenDomain reply */ @@ -473,7 +473,7 @@ static void continue_lsa_policy_open(struct rpc_request *req) struct composite_context *c; struct domain_open_lsa_state *s; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_open_lsa_state); c->status = dcerpc_ndr_request_recv(req); @@ -664,7 +664,7 @@ static void continue_lsa_close(struct rpc_request *req) struct composite_context *c; struct domain_close_lsa_state *s; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_close_lsa_state); c->status = dcerpc_ndr_request_recv(req); @@ -757,7 +757,7 @@ static void continue_samr_close(struct rpc_request *req) struct composite_context *c; struct domain_close_samr_state *s; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_close_samr_state); c->status = dcerpc_ndr_request_recv(req); @@ -909,7 +909,7 @@ static void continue_samr_connect(struct rpc_request *req) struct domain_list_state *s; struct rpc_request *enumdom_req; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_list_state); c->status = dcerpc_ndr_request_recv(req); @@ -939,7 +939,7 @@ static void continue_samr_enum_domains(struct rpc_request *req) struct rpc_request *enumdom_req; struct rpc_request *samrclose_req; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_list_state); c->status = dcerpc_ndr_request_recv(req); @@ -990,7 +990,7 @@ static void continue_samr_close_handle(struct rpc_request *req) struct composite_context *c; struct domain_list_state *s; - c = talloc_get_type(req->async.private, struct composite_context); + c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct domain_list_state); c->status = dcerpc_ndr_request_recv(req); -- cgit