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 <sri.hebbar@samsung.com>

Reviewers: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2098

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Srivardhan Hebbar 2015-03-06 15:52:43 +01:00 committed by Cedric BAIL
parent 554b2cd9da
commit 6721800e7b
1 changed files with 2 additions and 0 deletions

View File

@ -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);