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/ratbox.h | |
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/ratbox.h')
-rw-r--r-- | src/protocol/ratbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ratbox.h b/src/protocol/ratbox.h index 9b9c8d5b3..67a92cec3 100644 --- a/src/protocol/ratbox.h +++ b/src/protocol/ratbox.h @@ -63,7 +63,6 @@ void ratbox_cmd_318(const char *source, const char *who); void ratbox_cmd_242(const char *buf); void ratbox_cmd_243(const char *buf); void ratbox_cmd_211(const char *buf); -void ratbox_cmd_svsnick(const char *source, const char *guest, time_t when); void ratbox_cmd_vhost_on(const char *nick, const char *vIdent, const char *vhost); void ratbox_cmd_connect(int servernum); void ratbox_cmd_svshold(const char *nick); @@ -108,4 +107,5 @@ class RatboxProto : public IRCDProtoNew { void cmd_part(const char *, const char *, const char *); void cmd_global(const char *, const char *); void cmd_sqline(const char *, const char *); + void cmd_svsnick(const char *, const char *, time_t) { } // Ratbox doesn't have an SVSNICK command } ircd_proto; |