mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +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
|
|
@ -178,7 +178,7 @@ static RECONNECT_REC *find_reconnect_server(int chat_type,
|
|||
|
||||
if (rec->conn->chat_type == chat_type) {
|
||||
count++; last_proto_match = rec;
|
||||
if (g_strcasecmp(rec->conn->address, addr) == 0) {
|
||||
if (g_ascii_strcasecmp(rec->conn->address, addr) == 0) {
|
||||
if (rec->conn->port == port)
|
||||
return rec;
|
||||
match = rec;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue