mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Replace g_strdup+g_str{up,down} with g_ascii_str{up,down}.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4721 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
40f7904a1a
commit
af3b0b2b93
4 changed files with 4 additions and 8 deletions
|
|
@ -138,8 +138,7 @@ static char **module_prefixes_get(void)
|
|||
for (tmp = chat_protocols; tmp != NULL; tmp = tmp->next) {
|
||||
CHAT_PROTOCOL_REC *rec = tmp->data;
|
||||
|
||||
name = g_strdup(rec->name);
|
||||
g_strdown(name);
|
||||
name = g_ascii_strdown(rec->name, -1);
|
||||
|
||||
list[count++] = name;
|
||||
list[count++] = g_strconcat("fe_", name, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue