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

Merge pull request #37 from dajohi/g_ascii_strcasecmp

g_strcasecmp -> g_ascii_strcasecmp
This commit is contained in:
Alexander Færøy 2014-06-15 22:36:57 +02:00
commit 75d7e1b0bb

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