1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 11:56:38 +02:00

irc: avoid warnings for unsupported WHOX messages

Fixes #376. This avoids warnings for WHOX messages that we do not parse/
understand yet. Previously, IRC_PROTOCOL_MIN_ARGS was 5 where it should
have been 4 (which avoids warnings for WHOX commands only requesting one
WHOX type). Changing the behavior to support all different WHOX types
seems like a bad idea to me, as it's quite hard to figure out which
information was requested with the WHOX command.
This commit is contained in:
Max Teufel
2015-05-04 17:21:20 +02:00
parent 241a999bd6
commit 84e55e9fac
+2 -2
View File
@@ -4272,9 +4272,9 @@ IRC_PROTOCOL_CALLBACK(354)
struct t_irc_channel *ptr_channel;
struct t_irc_nick *ptr_nick;
IRC_PROTOCOL_MIN_ARGS(5);
IRC_PROTOCOL_MIN_ARGS(4);
/* silently ignore malformed 354 message (missing infos) */
/* silently ignore 354 messages we don't parse (missing infos) */
if (argc < 11)
return WEECHAT_RC_OK;