diff options
author | Jack Lloyd <[email protected]> | 2019-07-23 08:22:42 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-07-23 08:22:42 -0400 |
commit | a358c808c6add6111285b86e2784945d3cad26f8 (patch) | |
tree | e6d023f6620cc92edb2f425b71a791643f25da99 /src/lib/x509/cert_status.h | |
parent | ee65e1fe8ea82ba4afc74f2167162a5d96855af5 (diff) |
Fix "OSCP" typo in OCSP code.
GH #2048
Diffstat (limited to 'src/lib/x509/cert_status.h')
-rw-r--r-- | src/lib/x509/cert_status.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/x509/cert_status.h b/src/lib/x509/cert_status.h index b682746f8..33d6b6b65 100644 --- a/src/lib/x509/cert_status.h +++ b/src/lib/x509/cert_status.h @@ -30,6 +30,10 @@ enum class Certificate_Status_Code { FIRST_WARNING_STATUS = 500, CERT_SERIAL_NEGATIVE = 500, DN_TOO_LONG = 501, + OCSP_NO_REVOCATION_URL = 502, + OCSP_SERVER_NOT_AVAILABLE = 503, + + // Typo versions of above - will be removed in future major release OSCP_NO_REVOCATION_URL = 502, OSCP_SERVER_NOT_AVAILABLE = 503, |