diff options
author | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 21:05:46 +0000 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 21:05:46 +0000 |
commit | 1e26a8baedbc74036ada80deb16296e7d4eedb18 (patch) | |
tree | 180306f9b8f5bf8b17e166d32b4360ca9a7ec631 /engines | |
parent | 7c337e00d23ac421ff1949ac1bbce2e8b718299e (diff) | |
download | openssl-new-1e26a8baedbc74036ada80deb16296e7d4eedb18.tar.gz |
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 'engines')
-rw-r--r-- | engines/ccgost/gost_ameth.c | 4 | ||||
-rw-r--r-- | engines/ccgost/gost_ctl.c | 2 | ||||
-rw-r--r-- | engines/ccgost/gost_eng.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/engines/ccgost/gost_ameth.c b/engines/ccgost/gost_ameth.c index 1236d5e763..0a896039df 100644 --- a/engines/ccgost/gost_ameth.c +++ b/engines/ccgost/gost_ameth.c @@ -7,10 +7,12 @@ * for OpenSSL * * Requires OpenSSL 0.9.9 for compilation * **********************************************************************/ +#include <string.h> +#include <openssl/crypto.h> +#include <openssl/err.h> #include <openssl/engine.h> #include <openssl/evp.h> #include <openssl/asn1.h> -#include <string.h> #include "gost_params.h" #include "gost_lcl.h" #include "e_gost_err.h" diff --git a/engines/ccgost/gost_ctl.c b/engines/ccgost/gost_ctl.c index 85c2a0f2a4..d3cd171818 100644 --- a/engines/ccgost/gost_ctl.c +++ b/engines/ccgost/gost_ctl.c @@ -8,6 +8,8 @@ **********************************************************************/ #include <stdlib.h> #include <string.h> +#include <openssl/crypto.h> +#include <openssl/err.h> #include <openssl/engine.h> #include <openssl/buffer.h> #include "gost_lcl.h" diff --git a/engines/ccgost/gost_eng.c b/engines/ccgost/gost_eng.c index 6acc508832..d2cbe3b831 100644 --- a/engines/ccgost/gost_eng.c +++ b/engines/ccgost/gost_eng.c @@ -8,6 +8,8 @@ * Requires OpenSSL 0.9.9 for compilation * **********************************************************************/ #include <string.h> +#include <openssl/crypto.h> +#include <openssl/err.h> #include <openssl/evp.h> #include <openssl/engine.h> #include <openssl/obj_mac.h> |