Changeset 6b13103 for protocols/msn
- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- Location:
- protocols/msn
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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] );
Note: See TracChangeset
for help on using the changeset viewer.