Changeset 1065dd4 for protocols/msn
- 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. - Location:
- protocols/msn
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/invitation.c
rbc7a0d4 r1065dd4 21 21 You should have received a copy of the GNU General Public License with 22 22 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 23 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,24 Suite 330, Boston, MA 02111-1307USA23 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 24 Fifth Floor, Boston, MA 02110-1301 USA 25 25 */ 26 26 -
protocols/msn/invitation.h
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 -
protocols/msn/msn.c
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 … … 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/msn.h
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 -
protocols/msn/msn_util.c
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 -
protocols/msn/ns.c
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 … … 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
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25 … … 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/msn/soap.c
rbc7a0d4 r1065dd4 23 23 You should have received a copy of the GNU General Public License with 24 24 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 25 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,26 Suite 330, Boston, MA 02111-1307USA25 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 26 Fifth Floor, Boston, MA 02110-1301 USA 27 27 */ 28 28 -
protocols/msn/soap.h
rbc7a0d4 r1065dd4 23 23 You should have received a copy of the GNU General Public License with 24 24 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 25 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,26 Suite 330, Boston, MA 02111-1307USA25 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 26 Fifth Floor, Boston, MA 02110-1301 USA 27 27 */ 28 28 -
protocols/msn/tables.c
rbc7a0d4 r1065dd4 20 20 You should have received a copy of the GNU General Public License with 21 21 the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; 22 if not, write to the Free Software Foundation, Inc., 5 9 Temple Place,23 Suite 330, Boston, MA 02111-1307USA22 if not, write to the Free Software Foundation, Inc., 51 Franklin St., 23 Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 25
Note: See TracChangeset
for help on using the changeset viewer.