mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +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
|
|
@ -161,7 +161,7 @@ static HILIGHT_REC *hilight_find(const char *text, char **channels)
|
|||
for (tmp = hilights; tmp != NULL; tmp = tmp->next) {
|
||||
HILIGHT_REC *rec = tmp->data;
|
||||
|
||||
if (g_strcasecmp(rec->text, text) != 0)
|
||||
if (g_ascii_strcasecmp(rec->text, text) != 0)
|
||||
continue;
|
||||
|
||||
if ((channels == NULL && rec->channels == NULL))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue