Replace deprecated g_str[n]casecmp with g_ascii_str[n]cmp.

This commit is contained in:
David Hill 2014-06-10 12:06:19 -04:00
commit 0d4f13d20f
63 changed files with 168 additions and 160 deletions

View file

@ -66,7 +66,7 @@ static void sig_message_kick(SERVER_REC *server, const char *channel,
const char *address, const char *reason)
{
/* never ignore if you were kicked */
if (g_strcasecmp(nick, server->nick) != 0 &&
if (g_ascii_strcasecmp(nick, server->nick) != 0 &&
ignore_check(server, kicker, address,
channel, reason, MSGLEVEL_KICKS))
signal_stop();