From c36f8c14008e55b2be2e93c0987eb6971d45855f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 11 Feb 2013 10:36:52 -0800 Subject: tevent: Preparing to fix "standard" backend fallback. Initialize standard after epoll. Signed-off-by: Jeremy Allison Reviewed-by: Stefan Metzmacher --- lib/tevent/tevent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tevent/tevent.c') diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c index fa842e4208..e307dba3d7 100644 --- a/lib/tevent/tevent.c +++ b/lib/tevent/tevent.c @@ -115,10 +115,10 @@ static void tevent_backend_init(void) tevent_select_init(); tevent_poll_init(); tevent_poll_mt_init(); - tevent_standard_init(); #ifdef HAVE_EPOLL tevent_epoll_init(); #endif + tevent_standard_init(); } /* -- cgit