diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 09:09:31 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:47:45 +0100 |
commit | 3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7 (patch) | |
tree | 7fc2e580861a76845535ffc3169ccc31d7ce78f4 | |
parent | 4ea37dd52105c7faff633d172f96972bd79305f5 (diff) | |
download | samba-3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7.tar.gz |
librpc/rpc: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | librpc/rpc/binding_handle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/rpc/binding_handle.c b/librpc/rpc/binding_handle.c index 1e90827dbe1..89ada1d3574 100644 --- a/librpc/rpc/binding_handle.c +++ b/librpc/rpc/binding_handle.c @@ -209,7 +209,7 @@ NTSTATUS dcerpc_binding_handle_raw_call(struct dcerpc_binding_handle *h, if (h->sync_ev) { ev = h->sync_ev; } else { - ev = tevent_context_init(frame); + ev = samba_tevent_context_init(frame); } if (ev == NULL) { talloc_free(frame); @@ -524,7 +524,7 @@ NTSTATUS dcerpc_binding_handle_call(struct dcerpc_binding_handle *h, if (h->sync_ev) { ev = h->sync_ev; } else { - ev = tevent_context_init(frame); + ev = samba_tevent_context_init(frame); } if (ev == NULL) { talloc_free(frame); |