diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-16 14:52:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:30 -0500 |
commit | 40cd2d778093d7799b27b6beb37166d8a53f965c (patch) | |
tree | df28b80a71dd74da23820d3989e322bcba56c580 /source4/libnet/libnet_lookup.c | |
parent | 3e5335063a15dda4c21baab0961d766f30b21d84 (diff) | |
download | samba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.gz samba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.xz samba-40cd2d778093d7799b27b6beb37166d8a53f965c.zip |
r22944: fix bug #4618:
rename private -> private_data
metze
(This used to be commit 58551f2f28fce8f1fcd04736c47ecd7458f32ea2)
Diffstat (limited to 'source4/libnet/libnet_lookup.c')
-rw-r--r-- | source4/libnet/libnet_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_lookup.c b/source4/libnet/libnet_lookup.c index c8dc726764..32b47d0a7a 100644 --- a/source4/libnet/libnet_lookup.c +++ b/source4/libnet/libnet_lookup.c @@ -338,7 +338,7 @@ static void continue_name_found(struct rpc_request *req) struct composite_context *c; struct lookup_name_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 lookup_name_state); c->status = dcerpc_ndr_request_recv(req); |