Changeset 1065dd4 for protocols/purple
- 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
-
protocols/purple/purple.c
rbc7a0d4 r1065dd4 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.