1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-25 04:04:18 -04:00

g_strcasecmp -> g_ascii_strcasecmp

This commit is contained in:
David Hill 2014-06-15 16:20:58 -04:00
parent 57f138c087
commit 9e47f34c3f

View File

@ -338,7 +338,7 @@ static void cmd_statusbar_print_info(const char *name)
for (; tmp != NULL; tmp = tmp->next) {
STATUSBAR_CONFIG_REC *rec = tmp->data;
if (g_strcasecmp(rec->name, name) == 0) {
if (g_ascii_strcasecmp(rec->name, name) == 0) {
statusbar_print(rec);
return;
}