diff options
author | Jack Lloyd <[email protected]> | 2017-12-23 06:33:01 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-23 06:33:01 -0500 |
commit | c5981886f317651d2dad73325911a2c487cc9f79 (patch) | |
tree | 56e3a41b83e7c563d595dc1e83266bd038a31baf /src/lib/x509 | |
parent | 4e101df712233ba6ef972b70d705bb29c7f1b7cf (diff) |
Increase size of CRL code enum to 32-bits
BSI test is using a large enum value somewhere.
Diffstat (limited to 'src/lib/x509')
-rw-r--r-- | src/lib/x509/crl_ent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/x509/crl_ent.h b/src/lib/x509/crl_ent.h index b902eecfa..27549251f 100644 --- a/src/lib/x509/crl_ent.h +++ b/src/lib/x509/crl_ent.h @@ -19,7 +19,7 @@ struct CRL_Entry_Data; /** * X.509v2 CRL Reason Code. */ -enum CRL_Code { +enum CRL_Code : uint32_t { UNSPECIFIED = 0, KEY_COMPROMISE = 1, CA_COMPROMISE = 2, |