aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509/x_all.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-01-13 12:03:16 +0100
committerRichard Levitte <levitte@openssl.org>2017-01-13 12:03:25 +0100
commitd62210af2e169d0818c65ff9f20ab5276693b2bf (patch)
tree788abe82a4516477cd8b861e800fe66f737e3c91 /crypto/x509/x_all.c
parent37cbabbdb8c701a4d29c448cf6994fe154f43afa (diff)
downloadopenssl-d62210af2e169d0818c65ff9f20ab5276693b2bf.tar.gz
Fix no-ocsp
The use of EXFLAG_SET requires the inclusion of openssl/x509v3.h. openssl/ocsp.h does that, except when OCSP is disabled. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2227)
Diffstat (limited to 'crypto/x509/x_all.c')
-rw-r--r--crypto/x509/x_all.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/x509/x_all.c b/crypto/x509/x_all.c
index 86f4d70042..59f96a52d1 100644
--- a/crypto/x509/x_all.c
+++ b/crypto/x509/x_all.c
@@ -18,6 +18,7 @@
#include <openssl/ocsp.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
+#include <openssl/x509v3.h>
int X509_verify(X509 *a, EVP_PKEY *r)
{