diff options
author | Günther Deschner <gd@samba.org> | 2008-09-23 09:02:16 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-23 09:37:24 +0200 |
commit | 13a3971438fb12d60aa0eaf88d22019a5e4f67cd (patch) | |
tree | a5682223bfce97e5815a3f383cb7d3c088b96195 /source4/libcli/resolve | |
parent | c48186f507219e8732f02bdc2f835a7d8d02541c (diff) | |
download | samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.tar.gz samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.tar.xz samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.zip |
s4-nbt: use private_data instead of private.
Guenther
Diffstat (limited to 'source4/libcli/resolve')
-rw-r--r-- | source4/libcli/resolve/nbtlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/resolve/nbtlist.c b/source4/libcli/resolve/nbtlist.c index 8f085c54040..0cc2ee6726d 100644 --- a/source4/libcli/resolve/nbtlist.c +++ b/source4/libcli/resolve/nbtlist.c @@ -46,7 +46,7 @@ struct nbtlist_state { */ static void nbtlist_handler(struct nbt_name_request *req) { - struct composite_context *c = talloc_get_type(req->async.private, + struct composite_context *c = talloc_get_type(req->async.private_data, struct composite_context); struct nbtlist_state *state = talloc_get_type(c->private_data, struct nbtlist_state); struct nbt_name_query *q; @@ -169,7 +169,7 @@ struct composite_context *resolve_name_nbtlist_send(TALLOC_CTX *mem_ctx, if (composite_nomem(state->queries[i], c)) return c; state->queries[i]->async.fn = nbtlist_handler; - state->queries[i]->async.private = c; + state->queries[i]->async.private_data = c; } return c; |