diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-11-22 09:36:30 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-29 16:00:08 +0100 |
commit | b3d3395e01a015b440a84878c4d540dbaa437a32 (patch) | |
tree | cacebbfa1feaeb88fa8e724a0346c4bac0db7bc1 /source4/libcli/util/clilsa.c | |
parent | 511dc9358d8954f9ef04c01fb7cc3f776625c1f2 (diff) | |
download | samba-b3d3395e01a015b440a84878c4d540dbaa437a32.tar.gz samba-b3d3395e01a015b440a84878c4d540dbaa437a32.tar.xz samba-b3d3395e01a015b440a84878c4d540dbaa437a32.zip |
s4:libcli/raw: add transport->ev as copy of transport->socket->event.ctx
We'll remove transport->socket soon, but removing transport->ev
will take a bit longer.
metze
Diffstat (limited to 'source4/libcli/util/clilsa.c')
-rw-r--r-- | source4/libcli/util/clilsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/util/clilsa.c b/source4/libcli/util/clilsa.c index 4cfdf93725..4a81457569 100644 --- a/source4/libcli/util/clilsa.c +++ b/source4/libcli/util/clilsa.c @@ -79,7 +79,7 @@ static NTSTATUS smblsa_connect(struct smbcli_state *cli) } lsa->ipc_tree->tid = tcon.tconx.out.tid; - lsa->pipe = dcerpc_pipe_init(lsa, cli->transport->socket->event.ctx); + lsa->pipe = dcerpc_pipe_init(lsa, cli->transport->ev); if (lsa->pipe == NULL) { talloc_free(lsa); return NT_STATUS_NO_MEMORY; |