summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiwob <michael@wobst.at>2016-01-20 19:18:52 +0100
committermiwob <michael@wobst.at>2016-01-20 19:18:52 +0100
commit2356a1caabf27cf9577030a6aef42fc9471ef630 (patch)
tree7518ecca4c6268b5fb881f421f1dabd9c89bf0d6
parent10aeba2da208fb24702c8385aa1eed50369f03d0 (diff)
Update SendSQLine() in hybrid's protocol module to use non-capsulatet RESV message
-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 e50c335d9..eafebb93d 100644
--- a/modules/protocol/hybrid.cpp
+++ b/modules/protocol/hybrid.cpp
@@ -69,7 +69,7 @@ class HybridProto : public IRCDProto
void SendSQLine(User *, const XLine *x) anope_override
{
- UplinkSocket::Message(FindIntroduced()) << "ENCAP * RESV " << (x->expires ? x->expires - Anope::CurTime : 0) << " " << x->mask << " 0 :" << x->reason;
+ UplinkSocket::Message(FindIntroduced()) << "RESV * " << (x->expires ? x->expires - Anope::CurTime : 0) << " " << x->mask << " :" << x->reason;
}
void SendSGLineDel(const XLine *x) anope_override