summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2013-02-23 09:54:03 +0100
committerDukePyrolator <DukePyrolator@anope.org>2013-02-23 09:54:03 +0100
commit2336b4723c484bd1d4307c24f8f0b16de18e502c (patch)
tree7b2d0d379a0114e99f2d54dee5f40ff6a5694c90
parentda61734860ce61203ed460d10a5c18ed971b47e0 (diff)
do not send RESV from operserv when its not introduced
-rw-r--r--modules/protocol/hybrid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp
index a1e9a89e7..d01180b44 100644
--- a/modules/protocol/hybrid.cpp
+++ b/modules/protocol/hybrid.cpp
@@ -44,7 +44,7 @@ class HybridProto : public IRCDProto
void SendSQLine(User *, const XLine *x) anope_override
{
- UplinkSocket::Message(OperServ) << "RESV * " << x->mask << " :" << x->GetReason();
+ UplinkSocket::Message(Me) << "RESV * " << x->mask << " :" << x->GetReason();
}
void SendSGLineDel(const XLine *x) anope_override