diff options
author | Wouter Coekaerts <coekie@irssi.org> | 2005-09-10 03:23:27 +0000 |
---|---|---|
committer | coekie <coekie@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2005-09-10 03:23:27 +0000 |
commit | 262086c781b5aaab8343cc754f1e4ae74e5d58aa (patch) | |
tree | ea6a59704dedae977927389e8f001b3a3a17ab0c /src/fe-common/irc/fe-whois.c | |
parent | 4a8ebb150ac3dae18a45b872d78e63816ff754aa (diff) | |
download | irssi-262086c781b5aaab8343cc754f1e4ae74e5d58aa.zip |
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
Diffstat (limited to 'src/fe-common/irc/fe-whois.c')
-rw-r--r-- | src/fe-common/irc/fe-whois.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |