From 4cc4ddc1a796aa2e579e61acefc0348022de7e4f Mon Sep 17 00:00:00 2001 From: Geert Hauwaerts Date: Sat, 18 Sep 2004 20:56:33 +0000 Subject: Fixed /KNOCK support. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3305 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/irc/core/irc-commands.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/irc/core/irc-commands.c') diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c index d0d3b683..107fec70 100644 --- a/src/irc/core/irc-commands.c +++ b/src/irc/core/irc-commands.c @@ -1017,6 +1017,8 @@ void irc_commands_init(void) command_bind_irc("admin", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: INFO [] */ command_bind_irc("info", NULL, (SIGNAL_FUNC) command_self); + /* SYNTAX: KNOCK */ + command_bind_irc("knock", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: LINKS [[] ] */ command_bind_irc("links", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: LUSERS [ []] */ @@ -1108,6 +1110,7 @@ void irc_commands_deinit(void) command_unbind("ison", (SIGNAL_FUNC) command_1self); command_unbind("admin", (SIGNAL_FUNC) command_self); command_unbind("info", (SIGNAL_FUNC) command_self); + command_unbind("knock", (SIGNAL_FUNC) command_self); command_unbind("links", (SIGNAL_FUNC) command_self); command_unbind("lusers", (SIGNAL_FUNC) command_self); command_unbind("map", (SIGNAL_FUNC) command_self); -- cgit v1.2.3