summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2008-03-16 21:05:46 +0000
committerGeoff Thorpe <geoff@openssl.org>2008-03-16 21:05:46 +0000
commit1e26a8baedbc74036ada80deb16296e7d4eedb18 (patch)
tree180306f9b8f5bf8b17e166d32b4360ca9a7ec631 /apps
parent7c337e00d23ac421ff1949ac1bbce2e8b718299e (diff)
Fix a variety of warnings generated by some elevated compiler-fascism,
OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c3
-rw-r--r--apps/s_client.c1
-rw-r--r--apps/ts.c1
3 files changed, 5 insertions, 0 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index c436c8b6f3..eb38e4da6d 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -63,8 +63,11 @@
#include <time.h>
#include "apps.h" /* needs to be included before the openssl headers! */
#include <openssl/e_os2.h>
+#include <openssl/crypto.h>
+#include <openssl/err.h>
#include <openssl/ssl.h>
#include <openssl/evp.h>
+#include <openssl/bn.h>
#if defined(NETWARE_CLIB)
# ifdef NETWARE_BSDSOCK
diff --git a/apps/s_client.c b/apps/s_client.c
index 0c3545a4ca..ad8760cce5 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -162,6 +162,7 @@ typedef unsigned int u_int;
#include <openssl/pem.h>
#include <openssl/rand.h>
#include <openssl/ocsp.h>
+#include <openssl/bn.h>
#include "s_apps.h"
#include "timeouts.h"
diff --git a/apps/ts.c b/apps/ts.c
index f0923360a7..edeab82318 100644
--- a/apps/ts.c
+++ b/apps/ts.c
@@ -65,6 +65,7 @@
#include <openssl/pem.h>
#include <openssl/rand.h>
#include <openssl/ts.h>
+#include <openssl/bn.h>
#undef PROG
#define PROG ts_main