summaryrefslogtreecommitdiff
path: root/modules/protocol/hybrid.cpp
diff options
context:
space:
mode:
authorAdam <adam@sigterm.info>2016-01-23 09:18:41 -0600
committerAdam <adam@sigterm.info>2016-01-23 09:18:41 -0600
commitbe50211ae60dcce21c9f9790b927366a17686ec8 (patch)
tree3bcc102833b5a7874922532a3d47ab4008d83dfd /modules/protocol/hybrid.cpp
parentfaa8f57bb2e6ac8a61a7120703656531bc044807 (diff)
parent2356a1caabf27cf9577030a6aef42fc9471ef630 (diff)
Merge pull request #149 from miwob/SendSQLine
Update SendSQLine() in hybrid's protocol module to use non-capsulatet…
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-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 40ecc2981..4451b34a4 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