diff options
author | Rich Salz <rsalz@openssl.org> | 2016-12-13 17:52:22 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-12-13 20:30:21 +0100 |
commit | a47bc28317081fff10250a4d931821f64cfe191d (patch) | |
tree | 4c815cda15356d51019bdc5e964273f7ebfd3269 /crypto/x509/x509_lcl.h | |
parent | Fix various doc nits. (diff) | |
download | openssl-a47bc28317081fff10250a4d931821f64cfe191d.tar.xz openssl-a47bc28317081fff10250a4d931821f64cfe191d.zip |
Add X509_VERIFY_PARAM inheritance flag set/get
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2079)
Diffstat (limited to 'crypto/x509/x509_lcl.h')
-rw-r--r-- | crypto/x509/x509_lcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x509_lcl.h b/crypto/x509/x509_lcl.h index 0cc38c6443..34e413530a 100644 --- a/crypto/x509/x509_lcl.h +++ b/crypto/x509/x509_lcl.h @@ -18,7 +18,7 @@ struct X509_VERIFY_PARAM_st { char *name; time_t check_time; /* Time to use */ - unsigned long inh_flags; /* Inheritance flags */ + uint32_t inh_flags; /* Inheritance flags */ unsigned long flags; /* Various verify flags */ int purpose; /* purpose to check untrusted certificates */ int trust; /* trust setting to check */ |