mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
Replace deprecated g_str[n]casecmp with g_ascii_str[n]cmp.
This commit is contained in:
parent
5ca9287182
commit
0d4f13d20f
63 changed files with 168 additions and 160 deletions
|
|
@ -184,7 +184,7 @@ static void sig_message_mode(IRC_SERVER_REC *server, const char *channel,
|
|||
chanrec = !group_multi_mode ? NULL :
|
||||
irc_channel_find(server, channel);
|
||||
|
||||
if (chanrec != NULL && g_strcasecmp(nick, server->nick) != 0)
|
||||
if (chanrec != NULL && g_ascii_strcasecmp(nick, server->nick) != 0)
|
||||
msg_multi_mode(chanrec, nick, addr, mode);
|
||||
else {
|
||||
printformat(server, channel, MSGLEVEL_MODES,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue