summaryrefslogtreecommitdiff
path: root/modules/protocol/unreal.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-05-03 00:13:19 -0400
committerAdam <Adam@anope.org>2011-05-16 04:10:18 -0400
commitb59602abf85d522bb2f188be70b6cb7c9556a856 (patch)
tree77ffb4df0714463da7cf8c9531e90fad4c763aed /modules/protocol/unreal.cpp
parentfd21c36725fc52fd186e058bb2b5f6c4c37b81bb (diff)
Check for a valid server in /operserv noop
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r--modules/protocol/unreal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp
index fa25a1049..cb7a54d61 100644
--- a/modules/protocol/unreal.cpp
+++ b/modules/protocol/unreal.cpp
@@ -91,9 +91,9 @@ void unreal_cmd_chgident(const Anope::string &nick, const Anope::string &vIdent)
class UnrealIRCdProto : public IRCDProto
{
/* SVSNOOP */
- void SendSVSNOOP(const Anope::string &server, int set)
+ void SendSVSNOOP(const Server *server, bool set)
{
- send_cmd("", "f %s %s", server.c_str(), set ? "+" : "-");
+ send_cmd("", "f %s %s", server->GetName().c_str(), set ? "+" : "-");
}
void SendAkillDel(const XLine *x)