diff options
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); |