Changes in / [125b35d:59f5c42a]
- Files:
-
- 4 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r125b35d r59f5c42a 12 12 bitlbee.pc 13 13 .gdb_history 14 tests/check -
Makefile
r125b35d r59f5c42a 44 44 rm -f Makefile.settings config.h 45 45 find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \; 46 47 check:48 $(MAKE) -C tests49 46 50 47 install-doc: -
irc_commands.c
r125b35d r59f5c42a 321 321 { 322 322 user_t *u; 323 char buff[IRC_MAX_LINE] ;323 char buff[IRC_MAX_LINE], *s; 324 324 int lenleft, i; 325 325 -
nick.c
r125b35d r59f5c42a 163 163 int i, j; 164 164 165 for( i = j = 0; nick[i] && j< MAX_NICK_LENGTH; i++ )165 for( i = j = 0; nick[i] && i < MAX_NICK_LENGTH; i++ ) 166 166 { 167 167 if( strchr( nick_lc_chars, nick[i] ) || … … 172 172 } 173 173 } 174 while( j < =MAX_NICK_LENGTH )174 while( j < MAX_NICK_LENGTH ) 175 175 nick[j++] = '\0'; 176 176 }
Note: See TracChangeset
for help on using the changeset viewer.