PR: 1516
authorDr. Stephen Henson <steve@openssl.org>
Wed, 16 May 2007 12:16:49 +0000 (12:16 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 16 May 2007 12:16:49 +0000 (12:16 +0000)
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.

apps/ocsp.c

index 23c76868608537ec8b1ebcf4567957d53e4354e6..127eef6681e6bb501987ef54bdebbac23e91a080 100644 (file)
 #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)