From 262086c781b5aaab8343cc754f1e4ae74e5d58aa Mon Sep 17 00:00:00 2001 From: Wouter Coekaerts Date: Sat, 10 Sep 2005 03:23:27 +0000 Subject: 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 --- src/fe-common/irc/fe-whois.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fe-common/irc/fe-whois.c') diff --git a/src/fe-common/irc/fe-whois.c b/src/fe-common/irc/fe-whois.c index a9a1d499..bd18f5bd 100644 --- a/src/fe-common/irc/fe-whois.c +++ b/src/fe-common/irc/fe-whois.c @@ -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); -- cgit v1.2.3