- 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_im.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 … … 73 73 { 74 74 char *s; 75 for( s = bu->ic->acc->tag; isalnum( *s ); s ++ );75 for( s = bu->ic->acc->tag; g_ascii_isalnum( *s ); s ++ ); 76 76 /* Only use the tag if we got to the end of the string. 77 77 (So allow alphanumerics only. Hopefully not too … … 316 316 TODO(wilmer): Do the same with away msgs again! */ 317 317 for( s = iu->fullname; *s; s ++ ) 318 if( isspace( *s ) ) *s = ' ';318 if( g_ascii_isspace( *s ) ) *s = ' '; 319 319 320 320 if( ( bu->ic->flags & OPT_LOGGED_IN ) && set_getbool( &bee->set, "display_namechanges" ) )
Note: See TracChangeset
for help on using the changeset viewer.