From 2356a1caabf27cf9577030a6aef42fc9471ef630 Mon Sep 17 00:00:00 2001 From: miwob Date: Wed, 20 Jan 2016 19:18:52 +0100 Subject: Update SendSQLine() in hybrid's protocol module to use non-capsulatet RESV message --- modules/protocol/hybrid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/protocol/hybrid.cpp') 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 -- cgit