From edc32665d0f5cfd5d86f975c8ac8e8ff100956f7 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 25 May 2010 15:28:10 -0400 Subject: s4:smbd: use tevent_ fn names instead of leagcy event_ ones --- source4/smbd/process_thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/smbd/process_thread.c') diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c index cf94234c34..764c1f36d5 100644 --- a/source4/smbd/process_thread.c +++ b/source4/smbd/process_thread.c @@ -52,7 +52,7 @@ static void *thread_connection_fn(void *thread_parm) new_conn->new_conn(new_conn->ev, new_conn->lp_ctx, new_conn->sock, pthread_self(), new_conn->private_data); /* run this connection from here */ - event_loop_wait(new_conn->ev); + tevent_loop_wait(new_conn->ev); talloc_free(new_conn); @@ -137,7 +137,7 @@ static void *thread_task_fn(void *thread_parm) new_task->private_data); /* run this connection from here */ - event_loop_wait(new_task->ev); + tevent_loop_wait(new_task->ev); talloc_free(new_task); -- cgit