cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6721800e7bd7b55acddd496e22369cb7b780dce2
commit 6721800e7bd7b55acddd496e22369cb7b780dce2 Author: Srivardhan Hebbar <[email protected]> Date: Fri Mar 6 15:52:43 2015 +0100 ecore_con: calling ecore_con_local_init/shutdown from ecore_con_init/shutdown. Summary: ecore_con_local doesn't currently require any initialization, but it might need that on some platform and not having the init make the source code non obvious. This is just a patch to improve future maintenability. Signed-off-by: Srivardhan Hebbar <[email protected]> Reviewers: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2098 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/ecore_con/ecore_con.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ecore_con/ecore_con.c b/src/lib/ecore_con/ecore_con.c index a440bcd..914faa8 100644 --- a/src/lib/ecore_con/ecore_con.c +++ b/src/lib/ecore_con/ecore_con.c @@ -224,6 +224,7 @@ ecore_con_init(void) ecore_con_socks_init(); ecore_con_ssl_init(); ecore_con_info_init(); + ecore_con_local_init(); #ifdef HAVE_SYSTEMD sd_fd_max = sd_listen_fds(0); @@ -281,6 +282,7 @@ ecore_con_shutdown(void) ecore_con_socks_shutdown(); if (!_ecore_con_event_count) ecore_con_mempool_shutdown(); + ecore_con_local_shutdown(); ecore_con_info_shutdown(); ecore_con_ssl_shutdown(); eina_log_domain_unregister(_ecore_con_log_dom); --
