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:
Emanuele Giaquinta 2008-03-04 10:42:23 +00:00 committed by exg
commit af3b0b2b93
4 changed files with 4 additions and 8 deletions

View file

@ -254,9 +254,8 @@ static void cmd_help(const char *data)
{
char *cmd;
cmd = g_strdup(data);
cmd = g_ascii_strdown(data, -1);
g_strchomp(cmd);
g_strdown(cmd);
show_help(cmd);
g_free(cmd);
}

View file

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