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/libcli | |
parent | 3e5335063a15dda4c21baab0961d766f30b21d84 (diff) | |
download | samba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.gz samba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.bz2 samba-40cd2d778093d7799b27b6beb37166d8a53f965c.zip |
r22944: fix bug #4618:
rename private -> private_data
metze
(This used to be commit 58551f2f28fce8f1fcd04736c47ecd7458f32ea2)
Diffstat (limited to 'source4/libcli')
-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 e690c33f58..e929ad70e3 100644 --- a/source4/libcli/composite/composite.c +++ b/source4/libcli/composite/composite.c @@ -158,7 +158,7 @@ _PUBLIC_ void composite_continue_rpc(struct composite_context *ctx, { if (composite_nomem(new_req, ctx)) return; new_req->async.callback = continuation; - new_req->async.private = private_data; + new_req->async.private_data = private_data; } _PUBLIC_ void composite_continue_irpc(struct composite_context *ctx, |