summaryrefslogtreecommitdiff
path: root/source4/smbd/process_thread.c
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2010-05-25 15:28:10 -0400
committerSimo Sorce <idra@samba.org>2011-08-13 09:54:16 -0400
commitedc32665d0f5cfd5d86f975c8ac8e8ff100956f7 (patch)
treefc19257ea160b30712e2907dbb30c8ffce21922c /source4/smbd/process_thread.c
parentb1feb9d4324dfca7190ec3816d43392b65a94671 (diff)
downloadsamba-edc32665d0f5cfd5d86f975c8ac8e8ff100956f7.tar.gz
samba-edc32665d0f5cfd5d86f975c8ac8e8ff100956f7.tar.bz2
samba-edc32665d0f5cfd5d86f975c8ac8e8ff100956f7.zip
s4:smbd: use tevent_ fn names instead of leagcy event_ ones
Diffstat (limited to 'source4/smbd/process_thread.c')
-rw-r--r--source4/smbd/process_thread.c4
1 files changed, 2 insertions, 2 deletions
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);