diff options
author | Adam <adam@sigterm.info> | 2016-01-23 09:18:41 -0600 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2016-01-23 09:18:41 -0600 |
commit | be50211ae60dcce21c9f9790b927366a17686ec8 (patch) | |
tree | 3bcc102833b5a7874922532a3d47ab4008d83dfd /modules/protocol/hybrid.cpp | |
parent | faa8f57bb2e6ac8a61a7120703656531bc044807 (diff) | |
parent | 2356a1caabf27cf9577030a6aef42fc9471ef630 (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.cpp | 2 |
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 |