mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +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
|
|
@ -35,7 +35,7 @@ static QUERY_REC *query_find_address(SERVER_REC *server, const char *address)
|
|||
QUERY_REC *rec = tmp->data;
|
||||
|
||||
if (*rec->name != '=' && rec->address != NULL &&
|
||||
g_strcasecmp(address, rec->address) == 0)
|
||||
g_ascii_strcasecmp(address, rec->address) == 0)
|
||||
return rec;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue