Changeset 6b13103 for irc_channel.c
- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
r6f10697 r6b13103 575 575 576 576 /* Scan for non-whitespace chars followed by a colon: */ 577 for( s = msg; *s && ! isspace( *s ) && *s != ':' && *s != ','; s ++ ) {}577 for( s = msg; *s && !g_ascii_isspace( *s ) && *s != ':' && *s != ','; s ++ ) {} 578 578 579 579 if( *s == ':' || *s == ',' ) … … 583 583 memset( to, 0, sizeof( to ) ); 584 584 strncpy( to, msg, s - msg ); 585 while( *(++s) && isspace( *s ) ) {}585 while( *(++s) && g_ascii_isspace( *s ) ) {} 586 586 msg = s; 587 587
Note: See TracChangeset
for help on using the changeset viewer.