summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-commands.c
diff options
context:
space:
mode:
authorGeert Hauwaerts <geert@hauwaerts.be>2014-07-14 20:38:01 +0200
committerGeert Hauwaerts <geert@hauwaerts.be>2014-07-14 20:38:01 +0200
commitdde8540e3efccb7e1a86cfe9c57395a7cb5f4071 (patch)
treed0d35a074eabecfce4c887c03981a3f9cd366ecc /src/irc/core/irc-commands.c
parenta5154c4e774bf5a7499298612a655c790167e05b (diff)
downloadirssi-dde8540e3efccb7e1a86cfe9c57395a7cb5f4071.zip
Removed the obsolete RPING command
The RPING command is obsolete.
Diffstat (limited to 'src/irc/core/irc-commands.c')
-rw-r--r--src/irc/core/irc-commands.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c
index 0edbfa01..71828022 100644
--- a/src/irc/core/irc-commands.c
+++ b/src/irc/core/irc-commands.c
@@ -1014,8 +1014,6 @@ void irc_commands_init(void)
command_bind_irc("oper", NULL, (SIGNAL_FUNC) cmd_oper);
/* SYNTAX: RESTART */
command_bind_irc("restart", NULL, (SIGNAL_FUNC) command_self);
- /* SYNTAX: RPING <server> */
- command_bind_irc("rping", NULL, (SIGNAL_FUNC) command_self);
/* SYNTAX: SQUIT <server>|<mask> <reason> */
command_bind_irc("squit", NULL, (SIGNAL_FUNC) command_2self);
/* SYNTAX: UPING <server> */
@@ -1088,7 +1086,6 @@ void irc_commands_deinit(void)
command_unbind("hash", (SIGNAL_FUNC) command_self);
command_unbind("oper", (SIGNAL_FUNC) cmd_oper);
command_unbind("restart", (SIGNAL_FUNC) command_self);
- command_unbind("rping", (SIGNAL_FUNC) command_self);
command_unbind("squit", (SIGNAL_FUNC) command_2self);
command_unbind("uping", (SIGNAL_FUNC) command_self);
command_unbind("userhost", (SIGNAL_FUNC) command_self);