mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
with unknown (special) lines in whois, display the full content, not just the first parameter
(this may include "real content" as well as the description of what that field means) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3989 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
4a8ebb150a
commit
262086c781
@ -33,7 +33,7 @@ static void event_whois_special(IRC_SERVER_REC *server, const char *data)
|
||||
|
||||
g_return_if_fail(data != NULL);
|
||||
|
||||
params = event_get_params(data, 3, NULL, &nick, &str);
|
||||
params = event_get_params(data, 3 | PARAM_FLAG_GETREST, NULL, &nick, &str);
|
||||
printformat(server, nick, MSGLEVEL_CRAP,
|
||||
IRCTXT_WHOIS_SPECIAL, nick, str);
|
||||
g_free(params);
|
||||
|
Loading…
Reference in New Issue
Block a user