Changeset 6b13103 for protocols/jabber
- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- Location:
- protocols/jabber
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber_util.c
r6f10697 r6b13103 321 321 return FALSE; 322 322 } 323 if( tolower( jid1[i] ) !=tolower( jid2[i] ) )323 if( g_ascii_tolower( jid1[i] ) != g_ascii_tolower( jid2[i] ) ) 324 324 { 325 325 return FALSE; … … 342 342 it's Unicode but feck Unicode. :-P So stop once we see a slash. */ 343 343 for( i = 0; i < len && orig[i] != '/' ; i ++ ) 344 new[i] = tolower( orig[i] );344 new[i] = g_ascii_tolower( orig[i] ); 345 345 for( ; orig[i]; i ++ ) 346 346 new[i] = orig[i]; -
protocols/jabber/sasl.c
r6f10697 r6b13103 187 187 len = strlen( field ); 188 188 189 while( isspace( *data ) || *data == ',' )189 while( g_ascii_isspace( *data ) || *data == ',' ) 190 190 data ++; 191 191 … … 210 210 if( data[i] == ',' ) 211 211 { 212 while( isspace( data[i] ) || data[i] == ',' )212 while( g_ascii_isspace( data[i] ) || data[i] == ',' ) 213 213 i ++; 214 214
Note: See TracChangeset
for help on using the changeset viewer.