diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 10:57:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:48:04 +0100 |
commit | 95eeb9f08be84f92799ce0916a5dfa2dafd4b5f6 (patch) | |
tree | 062b604d7944e19d69650fbf967f58a3a9351d69 /source3 | |
parent | 01b8b1b88789a1f309a06d8db2983fd540feef9b (diff) | |
download | samba-95eeb9f08be84f92799ce0916a5dfa2dafd4b5f6.tar.gz samba-95eeb9f08be84f92799ce0916a5dfa2dafd4b5f6.tar.xz samba-95eeb9f08be84f92799ce0916a5dfa2dafd4b5f6.zip |
s3:lib: s/event_add_timed/tevent_add_timer
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/ctdbd_conn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 1a74e27258..2cf5e472b0 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -476,7 +476,7 @@ static NTSTATUS ctdb_read_req(struct ctdbd_connection *conn, uint32_t reqid, * We're waiting for a call reply, but an async message has * crossed. Defer dispatching to the toplevel event loop. */ - evt = event_add_timed(conn->msg_ctx->event_ctx, + evt = tevent_add_timer(conn->msg_ctx->event_ctx, conn->msg_ctx->event_ctx, timeval_zero(), deferred_message_dispatch, |