mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
Merge pull request #37 from dajohi/g_ascii_strcasecmp
g_strcasecmp -> g_ascii_strcasecmp
This commit is contained in:
commit
75d7e1b0bb
1 changed files with 1 additions and 1 deletions
|
|
@ -338,7 +338,7 @@ static void cmd_statusbar_print_info(const char *name)
|
||||||
for (; tmp != NULL; tmp = tmp->next) {
|
for (; tmp != NULL; tmp = tmp->next) {
|
||||||
STATUSBAR_CONFIG_REC *rec = tmp->data;
|
STATUSBAR_CONFIG_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (g_strcasecmp(rec->name, name) == 0) {
|
if (g_ascii_strcasecmp(rec->name, name) == 0) {
|
||||||
statusbar_print(rec);
|
statusbar_print(rec);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue