1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

More g_strcmp0 -> g_ascii_strcasecmp

This commit is contained in:
LemonBoy 2018-03-09 17:36:28 +01:00
parent fb9f5174c2
commit 76d958a87f

View File

@ -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;
}