1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-08 04:26:01 -04:00

Fixed printing of the recoded realname in whowas

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3686 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Valentin Batz 2004-11-29 15:59:21 +00:00 committed by vb
parent 989a5019ee
commit d5fb3039e2

View File

@ -314,7 +314,7 @@ static void event_whowas(IRC_SERVER_REC *server, const char *data)
&host, NULL, &realname);
recoded = recode_in(realname, nick);
printformat(server, nick, MSGLEVEL_CRAP,
IRCTXT_WHOWAS, nick, user, host, realname);
IRCTXT_WHOWAS, nick, user, host, recoded);
g_free(params);
g_free(recoded);
}