summaryrefslogtreecommitdiff
path: root/source4/libcli/composite/composite.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-15 10:29:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:08:50 -0500
commit4e4afdb94685388f56061a5cc188a5f5b8e1ae52 (patch)
treea97b13ff0f76a21342981ca0197ca7c77426c95f /source4/libcli/composite/composite.c
parent21aafc3536cb8a172805f0dd5d23b100f1ecb493 (diff)
downloadsamba-4e4afdb94685388f56061a5cc188a5f5b8e1ae52.tar.gz
samba-4e4afdb94685388f56061a5cc188a5f5b8e1ae52.tar.bz2
samba-4e4afdb94685388f56061a5cc188a5f5b8e1ae52.zip
r4754: tidied up the composite function infrastructure to make it easier to
have composite functions that are not made up of functions that operate on smbcli_request structures. (This used to be commit 4f6055b4fb7e287a29544ff1ca4e22f698efc478)
Diffstat (limited to 'source4/libcli/composite/composite.c')
-rw-r--r--source4/libcli/composite/composite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/composite/composite.c b/source4/libcli/composite/composite.c
index f7e23cd4bc..d4eb5a9323 100644
--- a/source4/libcli/composite/composite.c
+++ b/source4/libcli/composite/composite.c
@@ -34,7 +34,7 @@ NTSTATUS smb_composite_wait(struct smbcli_composite *c)
if (c == NULL) return NT_STATUS_NO_MEMORY;
while (c->state < SMBCLI_REQUEST_DONE) {
- if (event_loop_once(c->req->transport->event.ctx) != 0) {
+ if (event_loop_once(c->event_ctx) != 0) {
return NT_STATUS_UNSUCCESSFUL;
}
}