Replace remaining usage of deprecated g_strdown(). Follow-up to r5138.

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5208 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Jase Thew 2011-10-30 15:57:42 +00:00 committed by bazerka
commit 518b822db4
2 changed files with 4 additions and 4 deletions

View file

@ -435,7 +435,7 @@ static void autolog_open(SERVER_REC *server, const char *server_tag,
'%' -> '%%' - so strftime() won't mess with them */
fixed_target = escape_target(target);
if (CHAT_PROTOCOL(server)->case_insensitive)
g_strdown(fixed_target);
ascii_strdown(fixed_target);
/* $0 = target, $1 = server tag */
params = g_strconcat(fixed_target, " ", server_tag, NULL);