From 0d4f13d20f304927277ad327c714481bc97de48f Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 10 Jun 2014 12:06:19 -0400 Subject: Replace deprecated g_str[n]casecmp with g_ascii_str[n]cmp. --- src/irc/core/channel-rejoin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/irc/core/channel-rejoin.c') diff --git a/src/irc/core/channel-rejoin.c b/src/irc/core/channel-rejoin.c index c9528edc..d518f0c2 100644 --- a/src/irc/core/channel-rejoin.c +++ b/src/irc/core/channel-rejoin.c @@ -58,7 +58,7 @@ static REJOIN_REC *rejoin_find(IRC_SERVER_REC *server, const char *channel) for (tmp = server->rejoin_channels; tmp != NULL; tmp = tmp->next) { REJOIN_REC *rec = tmp->data; - if (g_strcasecmp(rec->channel, channel) == 0) + if (g_ascii_strcasecmp(rec->channel, channel) == 0) return rec; } -- cgit v1.2.3