Changes in / [54879ab:57c4fc0]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.c

    r54879ab r57c4fc0  
    239239        pid_t client_pid = 0;
    240240       
     241        if( new_socket == -1 )
     242        {
     243                log_message( LOGLVL_WARNING, "Could not accept new connection: %s", strerror( errno ) );
     244                return TRUE;
     245        }
     246       
    241247        if( global.conf->runmode == RUNMODE_FORKDAEMON )
    242248        {
  • ipc.c

    r54879ab r57c4fc0  
    105105static void ipc_child_cmd_die( irc_t *irc, char **cmd )
    106106{
    107         irc_abort( irc, 1, "Shutdown requested by operator" );
     107        irc_abort( irc, 0, "Shutdown requested by operator" );
    108108}
    109109
Note: See TracChangeset for help on using the changeset viewer.