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/composite | |
parent | c48186f507219e8732f02bdc2f835a7d8d02541c (diff) | |
download | samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.tar.gz samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.tar.bz2 samba-13a3971438fb12d60aa0eaf88d22019a5e4f67cd.zip |
s4-nbt: use private_data instead of private.
Guenther
Diffstat (limited to 'source4/libcli/composite')
-rw-r--r-- | source4/libcli/composite/composite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/composite/composite.c b/source4/libcli/composite/composite.c index 3e3f224f47..91a842706f 100644 --- a/source4/libcli/composite/composite.c +++ b/source4/libcli/composite/composite.c @@ -214,5 +214,5 @@ _PUBLIC_ void composite_continue_nbt(struct composite_context *ctx, { if (composite_nomem(new_req, ctx)) return; new_req->async.fn = continuation; - new_req->async.private = private_data; + new_req->async.private_data = private_data; } |