aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/err/err_all.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2003-01-15 11:47:28 +0000
committerBodo Möller <bodo@openssl.org>2003-01-15 11:47:28 +0000
commit365e14622a810d619f78f1f683580a7d2a353f60 (patch)
tree3691eafbe51ace942f6aa795ed5e234f6e64a71b /crypto/err/err_all.c
parent8ec16ce7110a9b60bb6a616c4f0ad2df6cb08894 (diff)
downloadopenssl-365e14622a810d619f78f1f683580a7d2a353f60.tar.gz
update error library for EC... changes
Submitted by: Nils Larsch
Diffstat (limited to 'crypto/err/err_all.c')
-rw-r--r--crypto/err/err_all.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index 90029fd159..812ab7cbe6 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -73,6 +73,12 @@
#ifndef OPENSSL_NO_DSA
#include <openssl/dsa.h>
#endif
+#ifndef OPENSSL_NO_ECDSA
+#include <openssl/ecdsa.h>
+#endif
+#ifndef OPENSSL_NO_ECDH
+#include <openssl/ecdh.h>
+#endif
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/pem2.h>
@@ -115,6 +121,12 @@ void ERR_load_crypto_strings(void)
#ifndef OPENSSL_NO_EC
ERR_load_EC_strings();
#endif
+#ifndef OPENSSL_NO_ECDSA
+ ERR_load_ECDSA_strings();
+#endif
+#ifndef OPENSSL_NO_ECDH
+ ERR_load_ECDH_strings();
+#endif
/* skip ERR_load_SSL_strings() because it is not in this library */
ERR_load_BIO_strings();
ERR_load_PKCS7_strings();