Add missing IRC command 275 (patch #6952)

This commit is contained in:
Sebastien Helleu 2009-10-21 13:18:28 +02:00
parent 08ebcc877f
commit 5a8c35f6b0
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
FlashCode <flashcode@flashtux.org>
v0.3.1-dev, 2009-10-19
v0.3.1-dev, 2009-10-21
Version 0.3.1 (under dev!)
@ -21,6 +21,7 @@ Version 0.3.1 (under dev!)
* alias: fix bug with buffer for execution of alias, when called from plugin API
with function "command" (bug #27697)
* alias: fix bug with arguments (bug #27440)
* irc: add missing command 275 (patch #6952)
* irc: add commands /sajoin, /samode, /sanick, /sapart, /saquit (task #9770)
* irc: add options for CTCP, to block/customize CTCP reply (task #9693)
* irc: add missing CTCP: clientinfo, finger, source, time, userinfo (task #7270)

View File

@ -3595,6 +3595,7 @@ irc_protocol_recv_command (struct t_irc_server *server, const char *entire_line,
{ "001", /* a server message */ 1, &irc_protocol_cmd_001 },
{ "005", /* a server message */ 1, &irc_protocol_cmd_005 },
{ "221", /* user mode string */ 1, &irc_protocol_cmd_221 },
{ "275", /* whois (secure connection) */ 1, &irc_protocol_cmd_whois_nick_msg },
{ "301", /* away message */ 1, &irc_protocol_cmd_301 },
{ "303", /* ison */ 1, &irc_protocol_cmd_303 },
{ "305", /* unaway */ 1, &irc_protocol_cmd_305 },