summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:09:31 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:45 +0100
commit3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7 (patch)
tree7fc2e580861a76845535ffc3169ccc31d7ce78f4 /librpc
parent4ea37dd52105c7faff633d172f96972bd79305f5 (diff)
downloadsamba-3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7.tar.gz
samba-3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7.tar.bz2
samba-3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7.zip
librpc/rpc: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/rpc/binding_handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/rpc/binding_handle.c b/librpc/rpc/binding_handle.c
index 1e90827dbe..89ada1d357 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);