Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/ns.c

    r6b13103 re132b60  
    2020  You should have received a copy of the GNU General Public License with
    2121  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
    22   if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
    23   Fifth Floor, Boston, MA  02110-1301  USA
     22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
     23  Suite 330, Boston, MA  02111-1307  USA
    2424*/
    2525
     
    581581                ic->flags |= OPT_PONGED;
    582582        }
    583         else if( g_ascii_isdigit( cmd[0][0] ) )
     583        else if( isdigit( cmd[0][0] ) )
    584584        {
    585585                int num = atoi( cmd[0] );
     
    997997        /* This might be a federated contact. Get its network number,
    998998           prefixed to bu->handle with a colon. Default is 1. */
    999         for( handle = bu->handle; g_ascii_isdigit( *handle ); handle ++ )
     999        for( handle = bu->handle; isdigit( *handle ); handle ++ )
    10001000                type = type * 10 + *handle - '0';
    10011001        if( *handle == ':' )
Note: See TracChangeset for help on using the changeset viewer.