summaryrefslogtreecommitdiff
path: root/crypto/dso
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-09-04 21:45:56 +0200
committerRichard Levitte <levitte@openssl.org>2019-09-12 17:59:52 +0200
commit0cd1b144f99e9aabea15a158bd567cba81592039 (patch)
treefbe4e57019f33d5a8006b10fdb3339fada6bb33a /crypto/dso
parent6beb8b39ba8e4cb005c1fcd2586ba19e17f04b95 (diff)
downloadopenssl-new-0cd1b144f99e9aabea15a158bd567cba81592039.tar.gz
util/mkerr.pl: make it not depend on the function code
The output C code was made to use ERR_func_error_string() to see if a string table was already loaded or not. Since this function returns NULL always, this check became useless. Change it to use ERR_reason_error_string() instead, as there's no reason to believe we will get rid of reason strings, ever. To top it off, we rebuild all affected C sources. Fixes #9756 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9756)
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_err.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dso/dso_err.c b/crypto/dso/dso_err.c
index 4afb106a8f..8a4d9a812a 100644
--- a/crypto/dso/dso_err.c
+++ b/crypto/dso/dso_err.c
@@ -49,7 +49,7 @@ static const ERR_STRING_DATA DSO_str_reasons[] = {
int ERR_load_DSO_strings(void)
{
#ifndef OPENSSL_NO_ERR
- if (ERR_func_error_string(DSO_str_reasons[0].error) == NULL)
+ if (ERR_reason_error_string(DSO_str_reasons[0].error) == NULL)
ERR_load_strings_const(DSO_str_reasons);
#endif
return 1;