From b538c3188971621dd55011e6050b5af281403bf7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:17:45 +0100 Subject: [PATCH] s3:rpc_client: make use of samba_tevent_context_init() Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/rpc_client/cli_pipe.c | 2 +- source3/rpc_client/rpc_transport_np.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 61e6cce6961..012d1f32f57 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -1961,7 +1961,7 @@ NTSTATUS rpc_pipe_bind(struct rpc_pipe_client *cli, struct tevent_req *req; NTSTATUS status = NT_STATUS_OK; - ev = event_context_init(frame); + ev = samba_tevent_context_init(frame); if (ev == NULL) { status = NT_STATUS_NO_MEMORY; goto fail; diff --git a/source3/rpc_client/rpc_transport_np.c b/source3/rpc_client/rpc_transport_np.c index 0be07eba75c..db7217e705b 100644 --- a/source3/rpc_client/rpc_transport_np.c +++ b/source3/rpc_client/rpc_transport_np.c @@ -117,7 +117,7 @@ NTSTATUS rpc_transport_np_init(TALLOC_CTX *mem_ctx, struct cli_state *cli, struct tevent_req *req; NTSTATUS status = NT_STATUS_OK; - ev = event_context_init(frame); + ev = samba_tevent_context_init(frame); if (ev == NULL) { status = NT_STATUS_NO_MEMORY; goto fail; -- 2.11.4.GIT