diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-01 00:03:47 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-02-01 00:17:20 +0100 |
commit | 5f13710ced2565355c3cdcef04067cacdf74a9ad (patch) | |
tree | 577f87ed1495048eba1f5321f94e11581a42aa5c /source4/libcli/composite | |
parent | 96f176dbd84090fd18b8c796f869ddaa2da39e59 (diff) | |
download | samba-5f13710ced2565355c3cdcef04067cacdf74a9ad.tar.gz samba-5f13710ced2565355c3cdcef04067cacdf74a9ad.tar.xz samba-5f13710ced2565355c3cdcef04067cacdf74a9ad.zip |
s4:irpc: avoid c++ reserved word 'private'
metze
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 aff8f79481e..a6b1c68d1c0 100644 --- a/source4/libcli/composite/composite.c +++ b/source4/libcli/composite/composite.c @@ -184,7 +184,7 @@ _PUBLIC_ void composite_continue_irpc(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; } _PUBLIC_ void composite_continue_smb(struct composite_context *ctx, |