diff options
author | miwob <michael@wobst.at> | 2016-10-01 10:37:00 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-01 10:37:00 -0400 |
commit | fa03def1dce87004b164a5fd7844c2306eac685f (patch) | |
tree | 22170a94b516a093106b9f66c11b1a4c8fe09dc7 /modules/protocol/hybrid.cpp | |
parent | 806f77760b3ef764218926a3d3a12957dd2daa70 (diff) |
Update SendSQLine() in hybrid's protocol module to use non-capsulatet RESV message
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 3484abcc2..c1d85bcf8 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -85,7 +85,7 @@ class HybridProto : public IRCDProto void SendSQLine(User *, XLine *x) override { - Uplink::Send(FindIntroduced(), "ENCAP", "*", "RESV", x->GetExpires() ? x->GetExpires() - Anope::CurTime : 0, x->GetMask(), "0", x->GetReason()); + Uplink::Send(FindIntroduced(), "RESV", "*", x->GetExpires() ? x->GetExpires() - Anope::CurTime : 0, x->GetMask(), x->GetReason()); } void SendSGLineDel(XLine *x) override |