Changeset 1065dd4 for irc_channel.c
- Timestamp:
- 2015-01-17T20:00:49Z (10 years ago)
- Branches:
- master
- Children:
- eb4ad8d
- Parents:
- bc7a0d4 (diff), 6b13103 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 … … 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.