diff options
author | Adam <Adam@anope.org> | 2013-12-25 14:29:41 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-12-25 14:29:41 -0500 |
commit | dbf5106c0986db078cf7ec9a49737b7caefe1728 (patch) | |
tree | 95b2df7fe6f0a84965cf8281941befb0ba932ad1 | |
parent | 3029a2db1abe025e9f5b2e1dc60d6b053b29a750 (diff) |
Fix sqline on hybrid
-rw-r--r-- | modules/protocol/hybrid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index 7e61b9085..b9ad17ed5 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -54,7 +54,7 @@ class HybridProto : public IRCDProto void SendSQLine(User *, const XLine *x) anope_override { - UplinkSocket::Message(Config->GetClient("OperServ")) << "RESV " << (x->expires ? x->expires - Anope::CurTime : 0) << " " << x->mask << " 0 :" << x->reason; + UplinkSocket::Message(Config->GetClient("OperServ")) << "ENCAP * RESV " << (x->expires ? x->expires - Anope::CurTime : 0) << " " << x->mask << " 0 :" << x->reason; } void SendSGLineDel(const XLine *x) anope_override |