diff options
author | Jeremy Allison <jra@samba.org> | 2013-02-11 10:36:52 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-02-14 10:19:38 -0800 |
commit | c36f8c14008e55b2be2e93c0987eb6971d45855f (patch) | |
tree | 2459c9f1906b3d282fe42aa0d493e9ca9691811f /lib/tevent | |
parent | 736e3b1335dde1ea20914841d1e178e453b42249 (diff) | |
download | samba-c36f8c14008e55b2be2e93c0987eb6971d45855f.tar.gz samba-c36f8c14008e55b2be2e93c0987eb6971d45855f.tar.xz samba-c36f8c14008e55b2be2e93c0987eb6971d45855f.zip |
tevent: Preparing to fix "standard" backend fallback. Initialize standard after epoll.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib/tevent')
-rw-r--r-- | lib/tevent/tevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } /* |