diff options
Diffstat (limited to 'lib/libcrypto/cpt_err.c')
| -rw-r--r-- | lib/libcrypto/cpt_err.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libcrypto/cpt_err.c b/lib/libcrypto/cpt_err.c index 06a6109ccee..9fd41fff8cb 100644 --- a/lib/libcrypto/cpt_err.c +++ b/lib/libcrypto/cpt_err.c @@ -92,15 +92,12 @@ static ERR_STRING_DATA CRYPTO_str_reasons[]= void ERR_load_CRYPTO_strings(void) { - static int init=1; +#ifndef OPENSSL_NO_ERR - if (init) + if (ERR_func_error_string(CRYPTO_str_functs[0].error) == NULL) { - init=0; -#ifndef OPENSSL_NO_ERR ERR_load_strings(0,CRYPTO_str_functs); ERR_load_strings(0,CRYPTO_str_reasons); -#endif - } +#endif } |
