summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index 1f7818295..8494c2c7b 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -1512,9 +1512,9 @@ int anope_event_sjoin(const char *source, int ac, const char **av)
return MOD_CONT;
}
-void unreal_cmd_swhois(const char *source, const char *who, const char *mask)
+void UnrealIRCdProto::cmd_swhois(const char *source, const char *who, const char *mask)
{
- send_cmd(source, "%s %s :%s", send_token("SWHOIS", "BA"), who, mask);
+ send_cmd(source, "%s %s :%s", send_token("SWHOIS", "BA"), who, mask);
}
void unreal_cmd_eob()
@@ -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_swhois(unreal_cmd_swhois);
pmodule_cmd_eob(unreal_cmd_eob);
pmodule_flood_mode_check(unreal_flood_mode_check);
pmodule_cmd_jupe(unreal_cmd_jupe);