diff options
Diffstat (limited to 'src/irc/bot/botnet-connection.c')
-rw-r--r-- | src/irc/bot/botnet-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/bot/botnet-connection.c b/src/irc/bot/botnet-connection.c index 59da48f6..7b2b3161 100644 --- a/src/irc/bot/botnet-connection.c +++ b/src/irc/bot/botnet-connection.c @@ -342,7 +342,7 @@ static void botnet_connect_event_uplink(BOT_REC *bot, const char *data) /* nick already in use, change it by adding a number at the end of it */ p = botnet->nick+strlen(botnet->nick); - while (p > botnet->nick && isdigit(p[-1])) p--; + while (p > botnet->nick && i_isdigit(p[-1])) p--; num = *p == '\0' ? 2 : atoi(p)+1; *p = '\0'; str = g_strdup_printf("%s%d", botnet->nick, num); g_free(botnet->nick); botnet->nick = str; |