Stop using <> parentheses to avoid XML/HTML markup

Transifex treats strings enclosed in <> as HTML.
This commit is contained in:
2018-06-20 14:32:54 +02:00
parent 5ef1d72e42
commit 9d84831d9b
36 changed files with 241 additions and 241 deletions

View File

@@ -1037,7 +1037,7 @@ void eap::method_tls::process_handshake(_In_bytecount_(size_msg) const void *_ms
list = cert_end;
}
wstring cert_name(!m_server_cert_chain.empty() ? get_cert_title(m_server_cert_chain.front()) : L"<blank>");
wstring cert_name(!m_server_cert_chain.empty() ? get_cert_title(m_server_cert_chain.front()) : L"(blank)");
m_module.log_event(&EAPMETHOD_TLS_CERTIFICATE, event_data((unsigned int)eap_type_tls), event_data(cert_name), event_data::blank);
break;
}