mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
More g_strcmp0 -> g_ascii_strcasecmp
This commit is contained in:
parent
fb9f5174c2
commit
76d958a87f
@ -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…
Reference in New Issue
Block a user