diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-02-19 05:21:01 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-02-19 05:21:01 +0100 |
commit | d0e1f3b66a9bbee91bade0b57c3335908704c2e5 (patch) | |
tree | 894ea163324170e0f5f237c38805785a6196af21 | |
parent | a49d7b12cb5b75920b718c8fcca8067efbf2f731 (diff) |
fixed a typo in the last SASL commit
-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") { |