mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
More g_strcmp0 -> g_ascii_strcasecmp
This commit is contained in:
parent
fb9f5174c2
commit
76d958a87f
1 changed files with 2 additions and 2 deletions
|
|
@ -478,8 +478,8 @@ static int compare_server_setup (CONFIG_NODE *node, SERVER_SETUP_REC *server)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (g_strcmp0(address, server->address) != 0 ||
|
||||
g_strcmp0(chatnet, server->chatnet) != 0 ||
|
||||
if (g_ascii_strcasecmp(address, server->address) != 0 ||
|
||||
g_ascii_strcasecmp(chatnet, server->chatnet) != 0 ||
|
||||
port != server->port) {
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue