mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue