Changes in / [125b35d:59f5c42a]


Ignore:
Files:
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • .bzrignore

    r125b35d r59f5c42a  
    1212bitlbee.pc
    1313.gdb_history
    14 tests/check
  • Makefile

    r125b35d r59f5c42a  
    4444        rm -f Makefile.settings config.h
    4545        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
    46 
    47 check:
    48         $(MAKE) -C tests
    4946
    5047install-doc:
  • irc_commands.c

    r125b35d r59f5c42a  
    321321{
    322322        user_t *u;
    323         char buff[IRC_MAX_LINE];
     323        char buff[IRC_MAX_LINE], *s;
    324324        int lenleft, i;
    325325       
  • nick.c

    r125b35d r59f5c42a  
    163163        int i, j;
    164164       
    165         for( i = j = 0; nick[i] && j < MAX_NICK_LENGTH; i++ )
     165        for( i = j = 0; nick[i] && i < MAX_NICK_LENGTH; i++ )
    166166        {
    167167                if( strchr( nick_lc_chars, nick[i] ) ||
     
    172172                }
    173173        }
    174         while( j <= MAX_NICK_LENGTH )
     174        while( j < MAX_NICK_LENGTH )
    175175                nick[j++] = '\0';
    176176}
Note: See TracChangeset for help on using the changeset viewer.