certificateExpired=Certificate has expired at: {0}
certificateExpired.category=X509_BASIC
+certificateExpired.openssl_code=ERR_LIB_SSL,SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED
noCACert=CA certificate was not found for the chain
noCACert.category=X509_CHAIN
certRevoked=Certificate was revoked at: {0}, the reason reported is: {1}
certRevoked.category=CRL
+certRevoked.openssl_code=ERR_LIB_SSL,SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED
noBaseCRL=Base CRL for the delta CRL was not found
noBaseCRL.category=CRL
cert = SSL_get_peer_certificate(ssl);
if (cert == NULL)
- return set_error(cc, CANL_ERR_NoClientCertificate, CANL_ERROR, "No peer certificate");
+ return set_error(cc, CANL_ERR_NoPeerCertificate, CANL_ERROR, "No peer certificate");
princ = calloc(1, sizeof(*princ));
if (princ == NULL)