Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    r3af70b0 r6ee9d2d  
    139139                break;
    140140        case STORAGE_OK:
    141                 irc_usermsg( irc, "Password accepted" );
     141                irc_usermsg( irc, "Password accepted, settings and accounts loaded" );
    142142                irc_umode_set( irc, "+R", 1 );
    143143                break;
     144        case STORAGE_OTHER_ERROR:
    144145        default:
    145                 irc_usermsg( irc, "Something very weird happened" );
     146                irc_usermsg( irc, "Unknown error while loading configuration" );
    146147                break;
    147148        }
     
    306307                       
    307308                                for( a = irc->accounts; a; a = a->next )
    308                                         if( !a->gc )
     309                                        if( !a->gc && a->auto_connect )
    309310                                                account_on( irc, a );
    310311                        }
Note: See TracChangeset for help on using the changeset viewer.