Changeset 6b13103 for protocols/purple
- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
r6f10697 r6b13103 61 61 while( *a == '_' ) a ++; 62 62 while( *b == '_' ) b ++; 63 if( tolower( *a ) !=tolower( *b ) )63 if( g_ascii_tolower( *a ) != g_ascii_tolower( *b ) ) 64 64 return FALSE; 65 65 … … 1148 1148 { 1149 1149 n = strlen( value ) - 1; 1150 while( isspace( value[n] ) )1150 while( g_ascii_isspace( value[n] ) ) 1151 1151 n --; 1152 1152 g_string_append_len( info, value, n + 1 );
Note: See TracChangeset
for help on using the changeset viewer.