std::string error;
STACK_OF(X509) *peerCerts = SSL_get_peer_cert_chain(ssl);
if (replyMsg.parse(reply.other().content(), reply.other().contentSize()) != Ssl::CrtdMessage::OK ||
- !replyMsg.parseResponse(validationResponse, peerCerts, error) ) {
+ !replyMsg.parseResponse(validationResponse, peerCerts, error) ) {
debugs(83, 5, "Reply from ssl_crtvd for " << request->GetHost() << " is incorrect");
validatorFailed = true;
} else {
filledCheck->sslErrors = NULL;
}
#if 1 // USE_SSL_CERT_VALIDATOR
- // If the certificate validator is used then we need to allow all errors and
+ // If the certificate validator is used then we need to allow all errors and
// pass them to certficate validator for more processing
else if (Ssl::TheConfig.ssl_crt_validator)
ok = 1;