diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
commit | 4fc8f14f19c9d7c70d5272078ccab47945c8064f (patch) | |
tree | c980686e84223b4dac7492f28cf2daf6a42012cf /src/protocol/inspircd11.c | |
parent | 54e65d003efff715a71088584443262d5655fb90 (diff) |
Added cmd_svsnick() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1247 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/inspircd11.c')
-rw-r--r-- | src/protocol/inspircd11.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index ad8d87f85..aef6983d1 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -975,17 +975,6 @@ void InspIRCdProto::cmd_squit(const char *servname, const char *message) send_cmd(ServerName, "SQUIT %s :%s", servname, message); } -/* SVSNICK */ -void inspircd_cmd_svsnick(const char *source, const char *guest, time_t when) -{ - if (!source || !guest) { - return; - } - /* Please note that inspircd will now echo back a nickchange for this SVSNICK */ - send_cmd(ServerName, "SVSNICK %s %s :%lu", source, guest, - (unsigned long) when); -} - /* Functions that use serval cmd functions */ void inspircd_cmd_vhost_on(const char *nick, const char *vIdent, const char *vhost) @@ -1673,7 +1662,6 @@ void moduleAddAnopeCmds() pmodule_cmd_242(inspircd_cmd_242); pmodule_cmd_243(inspircd_cmd_243); pmodule_cmd_211(inspircd_cmd_211); - pmodule_cmd_svsnick(inspircd_cmd_svsnick); pmodule_cmd_vhost_on(inspircd_cmd_vhost_on); pmodule_cmd_connect(inspircd_cmd_connect); pmodule_cmd_svshold(inspircd_cmd_svshold); |