diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
commit | d64b3aa890976ef888c11e1c24da5b692f1d67d3 (patch) | |
tree | c58cfc10f8765af1869d6e76d140391aeb5599d9 /src/ircd.c | |
parent | e6111d9ff4cb897b5c8bd00fcde339ffce1b66bf (diff) |
Remove anope_cmd_privmsg2 (it's identical to anope_cmd_privmsg!)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1207 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ircd.c b/src/ircd.c index 80c72cf65..12330437a 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -64,7 +64,6 @@ void initIrcdProto() ircdproto.ircd_cmd_notice = NULL; ircdproto.ircd_cmd_notice2 = NULL; ircdproto.ircd_cmd_privmsg = NULL; - ircdproto.ircd_cmd_privmsg2 = NULL; ircdproto.ircd_cmd_serv_notice = NULL; ircdproto.ircd_cmd_serv_privmsg = NULL; ircdproto.ircd_cmd_bot_chan_mode = NULL; @@ -327,11 +326,6 @@ void anope_cmd_privmsg(const char *source, const char *dest, const char *fmt, .. ircdproto.ircd_cmd_privmsg(source, dest, buf); } -void anope_cmd_privmsg2(const char *source, const char *dest, const char *msg) -{ - ircdproto.ircd_cmd_privmsg2(source, dest, msg); -} - void anope_cmd_serv_notice(const char *source, const char *dest, const char *msg) { ircdproto.ircd_cmd_serv_notice(source, dest, msg); @@ -806,12 +800,6 @@ pmodule_cmd_privmsg(void (*func) (const char *source, const char *dest, const ch } void -pmodule_cmd_privmsg2(void (*func) (const char *source, const char *dest, const char *msg)) -{ - ircdproto.ircd_cmd_privmsg2 = func; -} - -void pmodule_cmd_serv_notice(void (*func) (const char *source, const char *dest, const char *msg)) { ircdproto.ircd_cmd_serv_notice = func; |