aboutsummaryrefslogtreecommitdiffstats
path: root/dcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'dcc.c')
-rw-r--r--dcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dcc.c b/dcc.c
index d6e1a58b..831567fe 100644
--- a/dcc.c
+++ b/dcc.c
@@ -522,7 +522,7 @@ file_transfer_t *dcc_request( struct im_connection *ic, char* const* ctcp )
filename = ctcp[2];
host = ctcp[3];
- while( *host && isdigit( *host ) ) host++; /* Just digits? */
+ while( *host && g_ascii_isdigit( *host ) ) host++; /* Just digits? */
if( *host == '\0' )
{
struct in_addr ipaddr = { .s_addr = htonl( atoll( ctcp[3] ) ) };