Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    re67e513 r4c225f0  
    356356                        irc_switch_fd( irc, ipc_child_recv_fd );
    357357                        irc_sync( irc );
    358                         irc_rootmsg( irc, "You've successfully taken over your old session" );
     358                        irc_usermsg( irc, "You've successfully taken over your old session" );
    359359                        ipc_child_recv_fd = -1;
    360360                       
     
    374374        {
    375375                /* Master->New connection */
    376                 irc_rootmsg( irc, "Could not take over old session" );
     376                irc_usermsg( irc, "Could not take over old session" );
    377377        }
    378378}
     
    412412        /* Drop credentials, we'll shut down soon and shouldn't overwrite
    413413           any settings. */
    414         irc_rootmsg( irc, "Trying to take over existing session" );
     414        irc_usermsg( irc, "Trying to take over existing session" );
    415415       
    416416        irc_desync( irc );
     
    909909        int serversock;
    910910
     911        if (!IPCSOCKET || !*IPCSOCKET)
     912                return 1;
     913
    911914        /* Clean up old socket files that were hanging around.. */
    912915        if (unlink(IPCSOCKET) == -1 && errno != ENOENT) {
Note: See TracChangeset for help on using the changeset viewer.