diff options
author | Adam <Adam@anope.org> | 2013-02-19 01:28:27 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-19 01:28:27 -0500 |
commit | a1f92638e3c34266c65779df5e353931c0fa1d9d (patch) | |
tree | fe632e9d26315deaa9e01fc0dc4053fa7e510c6b | |
parent | 7d50818ee1da97dcac0037d415047955c889d307 (diff) | |
parent | d0e1f3b66a9bbee91bade0b57c3335908704c2e5 (diff) |
Merge branch '1.9' of github.com:anope/anope into 1.9
-rw-r--r-- | modules/protocol/inspircd20.cpp | 2 | ||||
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/inspircd20.cpp b/modules/protocol/inspircd20.cpp index c30923548..dfbf75091 100644 --- a/modules/protocol/inspircd20.cpp +++ b/modules/protocol/inspircd20.cpp @@ -572,7 +572,7 @@ struct IRCDMessageEncap : IRCDMessage if (params[5] == "PLAIN") UplinkSocket::Message(Me) << "ENCAP " << params[2].substr(0, 3) << " SASL " << Me->GetSID() << " " << params[2] << " C +"; else - UplinkSocket::Message(Me) << "ENCAP " << params[2].substr(0, 3) << " SASL " << Me->GetSID() << " " << params[2] << " C F"; + UplinkSocket::Message(Me) << "ENCAP " << params[2].substr(0, 3) << " SASL " << Me->GetSID() << " " << params[2] << " D F"; } else if (params[4] == "C") { diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 8449b7a19..01141b6a3 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -897,7 +897,7 @@ struct IRCDMessageSASL : IRCDMessage if (params[3] == "PLAIN") UplinkSocket::Message() << "SASL " << params[1].substr(0, p) << " " << params[1] << " C +"; else - UplinkSocket::Message() << "SASL " << params[1].substr(0, p) << " " << params[1] << " C F"; + UplinkSocket::Message() << "SASL " << params[1].substr(0, p) << " " << params[1] << " D F"; } else if (params[2] == "C") { |