Changeset b0364dc
- Timestamp:
- 2010-05-08T13:21:36Z (15 years ago)
- Branches:
- master
- Children:
- fd45e1d1
- Parents:
- 9e27f18
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
r9e27f18 rb0364dc 211 211 212 212 /* Scan for non-whitespace chars followed by a colon: */ 213 for( s = msg; *s && !isspace( *s ) && *s != ':' ; s ++ ) {}214 215 if( *s == ':' )213 for( s = msg; *s && !isspace( *s ) && *s != ':' && *s != ','; s ++ ) {} 214 215 if( *s == ':' || *s == ',' ) 216 216 { 217 217 char to[s-msg+1];
Note: See TracChangeset
for help on using the changeset viewer.