diff options
author | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 22:05:46 +0100 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 22:05:46 +0100 |
commit | 1e26a8baedbc74036ada80deb16296e7d4eedb18 (patch) | |
tree | 180306f9b8f5bf8b17e166d32b4360ca9a7ec631 /crypto/rsa | |
parent | Fix some warnings. (diff) | |
download | openssl-1e26a8baedbc74036ada80deb16296e7d4eedb18.tar.xz openssl-1e26a8baedbc74036ada80deb16296e7d4eedb18.zip |
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 'crypto/rsa')
-rw-r--r-- | crypto/rsa/rsa_ameth.c | 1 | ||||
-rw-r--r-- | crypto/rsa/rsa_pmeth.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/crypto/rsa/rsa_ameth.c b/crypto/rsa/rsa_ameth.c index e705f16cb9..53e29c65f6 100644 --- a/crypto/rsa/rsa_ameth.c +++ b/crypto/rsa/rsa_ameth.c @@ -61,6 +61,7 @@ #include <openssl/asn1t.h> #include <openssl/x509.h> #include <openssl/rsa.h> +#include <openssl/bn.h> #ifndef OPENSSL_NO_CMS #include <openssl/cms.h> #endif diff --git a/crypto/rsa/rsa_pmeth.c b/crypto/rsa/rsa_pmeth.c index 7d6fef822a..9dd0d4c7c7 100644 --- a/crypto/rsa/rsa_pmeth.c +++ b/crypto/rsa/rsa_pmeth.c @@ -61,6 +61,7 @@ #include <openssl/asn1t.h> #include <openssl/x509.h> #include <openssl/rsa.h> +#include <openssl/bn.h> #include <openssl/evp.h> #include "evp_locl.h" #include "rsa_locl.h" |