From: Richard Levitte Date: Fri, 13 Jan 2017 11:03:16 +0000 (+0100) Subject: Fix no-ocsp X-Git-Tag: OpenSSL_1_1_1-pre1~2671 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d62210af2e169d0818c65ff9f20ab5276693b2bf;p=oweals%2Fopenssl.git 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 (Merged from https://github.com/openssl/openssl/pull/2227) --- 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 #include #include +#include int X509_verify(X509 *a, EVP_PKEY *r) {