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)
This commit is contained in:
Richard Levitte 2017-01-13 12:03:16 +01:00
parent 37cbabbdb8
commit d62210af2e

View file

@ -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)
{