- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- Location:
- protocols
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/account.c
r6f10697 r6b13103 81 81 if( strcmp( prpl->name, "oscar" ) == 0 ) 82 82 { 83 if( isdigit( a->user[0] ) )83 if( g_ascii_isdigit( a->user[0] ) ) 84 84 strcpy( tag, "icq" ); 85 85 else … … 417 417 418 418 /* Format: /[0-9]+([*+][0-9]+(<[0-9+])?)?/ */ 419 while( *value && isdigit( *value ) )419 while( *value && g_ascii_isdigit( *value ) ) 420 420 p->start = p->start * 10 + *value++ - '0'; 421 421 … … 433 433 434 434 /* + or * the delay by this number every time. */ 435 while( *value && isdigit( *value ) )435 while( *value && g_ascii_isdigit( *value ) ) 436 436 p->step = p->step * 10 + *value++ - '0'; 437 437 … … 444 444 p->max = 0; 445 445 value ++; 446 while( *value && isdigit( *value ) )446 while( *value && g_ascii_isdigit( *value ) ) 447 447 p->max = p->max * 10 + *value++ - '0'; 448 448 -
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 -
protocols/msn/msn.c
r6f10697 r6b13103 377 377 g_tree_insert( md->domaintree, bu->handle, bu ); 378 378 379 for( handle = bu->handle; isdigit( *handle ); handle ++ );379 for( handle = bu->handle; g_ascii_isdigit( *handle ); handle ++ ); 380 380 if( *handle == ':' ) 381 381 { -
protocols/msn/ns.c
r6f10697 r6b13103 581 581 ic->flags |= OPT_PONGED; 582 582 } 583 else if( isdigit( cmd[0][0] ) )583 else if( g_ascii_isdigit( cmd[0][0] ) ) 584 584 { 585 585 int num = atoi( cmd[0] ); … … 997 997 /* This might be a federated contact. Get its network number, 998 998 prefixed to bu->handle with a colon. Default is 1. */ 999 for( handle = bu->handle; isdigit( *handle ); handle ++ )999 for( handle = bu->handle; g_ascii_isdigit( *handle ); handle ++ ) 1000 1000 type = type * 10 + *handle - '0'; 1001 1001 if( *handle == ':' ) -
protocols/msn/sb.c
r6f10697 r6b13103 506 506 else if( strcmp( cmd[0], "CAL" ) == 0 ) 507 507 { 508 if( num_parts < 4 || ! isdigit( cmd[3][0] ) )508 if( num_parts < 4 || !g_ascii_isdigit( cmd[3][0] ) ) 509 509 { 510 510 msn_sb_destroy( sb ); … … 645 645 } 646 646 } 647 else if( isdigit( cmd[0][0] ) )647 else if( g_ascii_isdigit( cmd[0][0] ) ) 648 648 { 649 649 int num = atoi( cmd[0] ); -
protocols/oscar/auth.c
r6f10697 r6b13103 125 125 return -EINVAL; 126 126 127 if ( isdigit(sn[0]) && set_getbool(&ic->acc->set, "old_icq_auth"))127 if (g_ascii_isdigit(sn[0]) && set_getbool(&ic->acc->set, "old_icq_auth")) 128 128 return goddamnicq(sess, conn, sn); 129 129 -
protocols/oscar/oscar.c
r6f10697 r6b13103 368 368 { 369 369 set_t *s; 370 gboolean icq = isdigit(acc->user[0]);370 gboolean icq = g_ascii_isdigit(acc->user[0]); 371 371 372 372 if (icq) { … … 394 394 struct oscar_data *odata = ic->proto_data = g_new0(struct oscar_data, 1); 395 395 396 if ( isdigit(acc->user[0]))396 if (g_ascii_isdigit(acc->user[0])) 397 397 odata->icq = TRUE; 398 398 else … … 2500 2500 char * chatname, *s; 2501 2501 2502 chatname = g_strdup_printf("%s%s%d", isdigit(*ic->acc->user) ? "icq" : "",2502 chatname = g_strdup_printf("%s%s%d", g_ascii_isdigit(*ic->acc->user) ? "icq" : "", 2503 2503 ic->acc->user, chat_id++); 2504 2504 2505 2505 for (s = chatname; *s; s ++) 2506 if (! isalnum(*s))2506 if (!g_ascii_isalnum(*s)) 2507 2507 *s = '0'; 2508 2508 -
protocols/oscar/oscar_util.c
r6f10697 r6b13103 57 57 curPtr2++; 58 58 } else { 59 if ( toupper(*curPtr1) !=toupper(*curPtr2))59 if ( g_ascii_toupper(*curPtr1) != g_ascii_toupper(*curPtr2)) 60 60 return 1; 61 61 curPtr1++; -
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 ); -
protocols/skype/skype.c
r6f10697 r6b13103 514 514 char *iptr = sd->info_sex; 515 515 while (*iptr++) 516 *iptr = tolower(*iptr);516 *iptr = g_ascii_tolower(*iptr); 517 517 g_string_append_printf(st, 518 518 "Gender: %s\n", sd->info_sex); -
protocols/twitter/twitter.c
r6f10697 r6b13103 459 459 460 460 strcpy(pin, message); 461 for (s = pin + sizeof(pin) - 2; s > pin && isspace(*s); s--)461 for (s = pin + sizeof(pin) - 2; s > pin && g_ascii_isspace(*s); s--) 462 462 *s = '\0'; 463 for (s = pin; *s && isspace(*s); s++) {463 for (s = pin; *s && g_ascii_isspace(*s); s++) { 464 464 } 465 465 -
protocols/yahoo/yahoo_httplib.c
r6f10697 r6b13103 152 152 static int isurlchar(unsigned char c) 153 153 { 154 return ( isalnum(c));154 return (g_ascii_isalnum(c)); 155 155 } 156 156
Note: See TracChangeset
for help on using the changeset viewer.