entrance: kick them out !

SVN revision: 76085
This commit is contained in:
Michael BOUCHAUD 2012-09-03 23:06:12 +00:00
parent e7ee1046ad
commit ef62088c0d
3 changed files with 2 additions and 8 deletions

View File

@ -382,7 +382,7 @@ main (int argc, char ** argv)
free(dname);
if (entrance_session_logged_get())
{
PT("Bye, see you. Now go to code !\n");
PT("Bye user logged, see you.");
entrance_close_log();
_entrance_wait();
}

View File

@ -18,7 +18,6 @@ static Eina_Bool _history_update = EINA_FALSE;
void
entrance_history_init()
{
fprintf(stderr, PACKAGE": history init\n");
Eet_Data_Descriptor *edd;
Eet_Data_Descriptor_Class eddc, eddcl;
// TODO add idler to load history and thread stuff
@ -44,7 +43,6 @@ Eina_List *entrance_history_get()
void
entrance_history_shutdown()
{
fprintf(stderr, PACKAGE": history shutdown\n");
_entrance_history_write();
_entrance_user_shutdown();
}

View File

@ -124,12 +124,9 @@ entrance_server_init()
{
Ecore_Event_Handler *h;
ecore_con_init();
fprintf(stderr, PACKAGE": server init\n");
_entrance_server = ecore_con_server_add(ECORE_CON_LOCAL_SYSTEM,
"entrance", 42, NULL);
if (_entrance_server)
fprintf(stderr, PACKAGE": server init ok\n");
else
if (!_entrance_server)
fprintf(stderr, PACKAGE": server init fail\n");
h = ecore_event_handler_add(ECORE_CON_EVENT_CLIENT_ADD,
@ -147,7 +144,6 @@ void
entrance_server_shutdown()
{
Ecore_Event_Handler *h;
fprintf(stderr, PACKAGE": server shutdown\n");
if (_entrance_server)
ecore_con_server_del(_entrance_server);
EINA_LIST_FREE(_handlers, h)