Fix indentation of SASL code.

This should help understanding what it's trying to do.
This commit is contained in:
Alexey Sokolov
2025-02-13 21:03:16 +00:00
parent c6ae8d16e5
commit 22f27b2e88
3 changed files with 44 additions and 43 deletions

View File

@@ -234,7 +234,7 @@ void CMessage::Parse(const CString& sMessage) {
if (m_bColon) {
++begin;
m_vsParams.push_back(std::string(begin, end - begin));
begin = end;
begin = end;
} else {
m_vsParams.push_back(std::string(next_word()));
}