summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-05-16 12:16:49 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-05-16 12:16:49 +0000
commitad35cdac74a74b30b6906c74c9db24dc1bf90a27 (patch)
tree70df0ebd8e0cf25477da5303421cc867887a3892 /apps
parent4eba5d8c86599431932c9b4861ee8aa3a9b92436 (diff)
PR: 1516
Revert change in 1516 because it breaks Windows build. Use a modified version of the headers from s_client.c which has used similar functionality without any problems.
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index 23c7686860..127eef6681 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -58,23 +58,14 @@
#ifndef OPENSSL_NO_OCSP
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
-#define _XOPEN_SOURCE_EXTENDED 1 /* Or fd_set, select() and so on won't be
- declared properly on Compaq platforms
- (at least with DEC C).
- */
-#ifdef OPENSSL_SYS_VMS
-# include <time.h>
-#else
-# include <sys/time.h>
-# include <sys/select.h>
-#endif
-#include "apps.h"
-#include <openssl/pem.h>
+#include <openssl/e_os2.h>
+#include <openssl/bio.h>
#include <openssl/ocsp.h>
-#include <openssl/err.h>
+#include <openssl/txt_db.h>
#include <openssl/ssl.h>
-#include <openssl/bn.h>
+#include "apps.h"
/* Maximum leeway in validity period: default 5 minutes */
#define MAX_VALIDITY_PERIOD (5 * 60)