Skip to content

Commit

Permalink
Add two missing entries to the OCSP CRLReason table
Browse files Browse the repository at this point in the history
CLA: trivial

Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #21743)
  • Loading branch information
robstradling authored and levitte committed Aug 18, 2023
1 parent 0577dba commit 1c8a7f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crypto/ocsp/ocsp_prn.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ const char *OCSP_crl_reason_str(long s)
{OCSP_REVOKED_STATUS_SUPERSEDED, "superseded"},
{OCSP_REVOKED_STATUS_CESSATIONOFOPERATION, "cessationOfOperation"},
{OCSP_REVOKED_STATUS_CERTIFICATEHOLD, "certificateHold"},
{OCSP_REVOKED_STATUS_REMOVEFROMCRL, "removeFromCRL"}
{OCSP_REVOKED_STATUS_REMOVEFROMCRL, "removeFromCRL"},
{OCSP_REVOKED_STATUS_PRIVILEGEWITHDRAWN, "privilegeWithdrawn"},
{OCSP_REVOKED_STATUS_AACOMPROMISE, "aACompromise"}
};
return table2string(s, reason_tbl);
}
Expand Down

0 comments on commit 1c8a7f5

Please sign in to comment.