diff options
author | Matt Caswell <matt@openssl.org> | 2015-10-06 15:47:00 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-11-21 00:34:35 +0100 |
commit | 079a1a9014b89661f0a612a5a9724ad9c77f21a3 (patch) | |
tree | 2e04061d51e78ff7c6e53bdd2440497c9cbcc0c6 /crypto/err/err_all.c | |
parent | Update CHANGES (diff) | |
download | openssl-079a1a9014b89661f0a612a5a9724ad9c77f21a3.tar.xz openssl-079a1a9014b89661f0a612a5a9724ad9c77f21a3.zip |
Add ASYNC error codes
Add ASYNCerr support to give some meaningful error message in the event of
a failure.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/err/err_all.c')
-rw-r--r-- | crypto/err/err_all.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c index d9a2a57682..baf76e7e26 100644 --- a/crypto/err/err_all.c +++ b/crypto/err/err_all.c @@ -106,6 +106,7 @@ # include <openssl/jpake.h> #endif #include <internal/ct_int.h> +#include <openssl/async.h> void ERR_load_crypto_strings(void) { @@ -165,5 +166,6 @@ void ERR_load_crypto_strings(void) # ifndef OPENSSL_NO_CT ERR_load_CT_strings(); # endif + ERR_load_ASYNC_strings(); #endif } |