Signed-off-by: Joakim Tjernlund <[email protected]> --- crypto/asn1/d2i_pr.c | 1 + crypto/conf/conf_sap.c | 1 + crypto/dh/dh_lib.c | 1 + crypto/dsa/dsa_lib.c | 1 + crypto/evp/digest.c | 1 + crypto/evp/pmeth_lib.c | 1 + crypto/pem/pem_lib.c | 1 + crypto/pem/pem_pkey.c | 1 + crypto/rsa/rsa_crpt.c | 1 + crypto/rsa/rsa_lib.c | 1 + 10 files changed, 10 insertions(+)
diff --git a/crypto/asn1/d2i_pr.c b/crypto/asn1/d2i_pr.c index ec222df..2ecab5f 100644 --- a/crypto/asn1/d2i_pr.c +++ b/crypto/asn1/d2i_pr.c @@ -69,6 +69,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> #include "asn1_locl.h" diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c index 41d7acc..d0e2fb1 100644 --- a/crypto/conf/conf_sap.c +++ b/crypto/conf/conf_sap.c @@ -68,6 +68,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> /* This is the automatic configuration loader: it is called automatically by * OpenSSL when any of a number of standard initialisation functions are called, diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 4827093..220c03d 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -66,6 +66,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> static const DH_METHOD *default_DH_method = NULL; diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c index 573e344..845e4d1 100644 --- a/crypto/dsa/dsa_lib.c +++ b/crypto/dsa/dsa_lib.c @@ -72,6 +72,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> static const DSA_METHOD *default_DSA_method = NULL; diff --git a/crypto/evp/digest.c b/crypto/evp/digest.c index ba7dd10..7faff5d 100644 --- a/crypto/evp/digest.c +++ b/crypto/evp/digest.c @@ -120,6 +120,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> void EVP_MD_CTX_init(EVP_MD_CTX *ctx) diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c index dc1387d..bcbafcf 100644 --- a/crypto/evp/pmeth_lib.c +++ b/crypto/evp/pmeth_lib.c @@ -68,6 +68,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> #include "asn1_locl.h" #include "evp_locl.h" diff --git a/crypto/pem/pem_lib.c b/crypto/pem/pem_lib.c index 152f1e4..4744818 100644 --- a/crypto/pem/pem_lib.c +++ b/crypto/pem/pem_lib.c @@ -76,6 +76,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> #include "asn1_locl.h" diff --git a/crypto/pem/pem_pkey.c b/crypto/pem/pem_pkey.c index 39125b1..243d217 100644 --- a/crypto/pem/pem_pkey.c +++ b/crypto/pem/pem_pkey.c @@ -72,6 +72,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> #include "asn1_locl.h" diff --git a/crypto/rsa/rsa_crpt.c b/crypto/rsa/rsa_crpt.c index 0db3082..ba224f9 100644 --- a/crypto/rsa/rsa_crpt.c +++ b/crypto/rsa/rsa_crpt.c @@ -69,6 +69,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> int RSA_size(const RSA *r) diff --git a/crypto/rsa/rsa_lib.c b/crypto/rsa/rsa_lib.c index 9ebc195..6ab8d5d 100644 --- a/crypto/rsa/rsa_lib.c +++ b/crypto/rsa/rsa_lib.c @@ -69,6 +69,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/err.h> static const RSA_METHOD *default_RSA_meth = NULL; -- 1.8.5.5
