summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-01 16:07:05 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-01 20:37:44 +0100
commitaf183984c3feaae693f4785be71dc1e098991d6f (patch)
tree04232119c55725c0cd10c4e246ad4caa861db301 /include
parentfb029cebaeb6b0dbdb05a26a515e38a52a3c0fa1 (diff)
use uint32_t for certificate flags
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/x509.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index 4e816ea3c7..5e795c06ee 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -197,10 +197,10 @@ struct x509_st {
/* These contain copies of various extension values */
long ex_pathlen;
long ex_pcpathlen;
- unsigned long ex_flags;
- unsigned long ex_kusage;
- unsigned long ex_xkusage;
- unsigned long ex_nscert;
+ uint32_t ex_flags;
+ uint32_t ex_kusage;
+ uint32_t ex_xkusage;
+ uint32_t ex_nscert;
ASN1_OCTET_STRING *skid;
AUTHORITY_KEYID *akid;
X509_POLICY_CACHE *policy_cache;