Incorrect RFC quote removed

This commit is contained in:
2017-01-31 11:03:06 +01:00
parent d695ded8e7
commit d1a6d02e67
3 changed files with 3 additions and 3 deletions

View File

@@ -290,7 +290,7 @@ wstring eap::config_method_ttls::get_public_identity(const credentials_ttls &cre
// Use the true identity.
return cred.get_identity();
} else if (m_anonymous_identity.compare(L"@") == 0) {
// Strip username part from identity (RFC 4822).
// Strip username part from identity.
wstring identity(std::move(cred.get_identity()));
auto offset = identity.find(L'@');
if (offset != wstring::npos) identity.erase(0, offset);