summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-20 16:38:29 +0100
committerMatt Caswell <matt@openssl.org>2016-04-21 17:03:02 +0100
commit5951e840d9295bed554c267f51d7977b8f76b4bb (patch)
treee43887e72f2b63759b0c1d706eeac794563c0450 /apps
parent5d94e5b65adc7d773068b8eb4b5525d35930f1ae (diff)
downloadopenssl-new-5951e840d9295bed554c267f51d7977b8f76b4bb.tar.gz
Fix no-ocsp on Windows (and probably VMS)
The ocsp.h file did not have appropriate guards causing link failures on Windows. GH Issue 900 Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/opt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/opt.c b/apps/opt.c
index 63d32150cc..c8c01a70a2 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -59,6 +59,7 @@
#include <ctype.h>
#include <limits.h>
#include <openssl/bio.h>
+#include <openssl/x509v3.h>
#define MAX_OPT_HELP_WIDTH 30
const char OPT_HELP_STR[] = "--";