summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit82722cf5d7d56a51830f797b5396908387107b64 (patch)
treeb05b3223893de9bfa10e2bf38b17907652a05aaa /src/protocol/unreal32.c
parent44f01ce8d5e604f5539f55d393ec9df17d14ffd7 (diff)
Added cmd_quit() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1236 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index da5142fdf..8684be95c 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -642,16 +642,6 @@ void unreal_cmd_351(const char *source)
version_flags, EncModule, version_build);
}
-/* QUIT */
-void unreal_cmd_quit(const char *source, const char *buf)
-{
- if (buf) {
- send_cmd(source, "%s :%s", send_token("QUIT", ","), buf);
- } else {
- send_cmd(source, "%s", send_token("QUIT", ","));
- }
-}
-
/* PROTOCTL */
/*
NICKv2 = Nick Version 2
@@ -2036,7 +2026,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_375(unreal_cmd_375);
pmodule_cmd_376(unreal_cmd_376);
pmodule_cmd_351(unreal_cmd_351);
- pmodule_cmd_quit(unreal_cmd_quit);
pmodule_cmd_pong(unreal_cmd_pong);
pmodule_cmd_join(unreal_cmd_join);
pmodule_cmd_unsqline(unreal_cmd_unsqline);