diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
commit | ae4f3a615fb38bcec088f0ac41d8d4a78181d90e (patch) | |
tree | a9a70e752ce7640059348d32e4557dd39c8d3244 /src/protocol/unreal32.c | |
parent | 611bafbafe76852e3ea5942a6e2a18bda9289cf2 (diff) |
Added cmd_eob() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1267 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 8494c2c7b..e91894351 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1517,9 +1517,9 @@ void UnrealIRCdProto::cmd_swhois(const char *source, const char *who, const char send_cmd(source, "%s %s :%s", send_token("SWHOIS", "BA"), who, mask); } -void unreal_cmd_eob() +void UnrealIRCdProto::cmd_eob() { - send_cmd(ServerName, "%s", send_token("EOS", "ES")); + send_cmd(ServerName, "%s", send_token("EOS", "ES")); } /* svswatch @@ -1900,7 +1900,6 @@ void moduleAddAnopeCmds() pmodule_cmd_242(unreal_cmd_242); pmodule_cmd_243(unreal_cmd_243); pmodule_cmd_211(unreal_cmd_211); - pmodule_cmd_eob(unreal_cmd_eob); pmodule_flood_mode_check(unreal_flood_mode_check); pmodule_cmd_jupe(unreal_cmd_jupe); pmodule_valid_nick(unreal_valid_nick); |