From 0a224bc77b9bb59c72b9d79d9e8637837ffd878c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 5 Aug 2010 12:48:52 +0200 Subject: s3: Save the received trans2 from the inbuf in cli_trans --- source3/rpc_client/rpc_transport_np.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/rpc_transport_np.c b/source3/rpc_client/rpc_transport_np.c index e00c1f30ba..9d803aa9d4 100644 --- a/source3/rpc_client/rpc_transport_np.c +++ b/source3/rpc_client/rpc_transport_np.c @@ -329,7 +329,8 @@ static void rpc_np_trans_done(struct tevent_req *subreq) req, struct rpc_np_trans_state); NTSTATUS status; - status = cli_trans_recv(subreq, state, NULL, 0, NULL, NULL, 0, NULL, + status = cli_trans_recv(subreq, state, NULL, NULL, 0, NULL, + NULL, 0, NULL, &state->rdata, 0, &state->rdata_len); TALLOC_FREE(subreq); if (NT_STATUS_EQUAL(status, NT_STATUS_BUFFER_TOO_SMALL)) { -- cgit