summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/ui/ui_err.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcrypto/ui/ui_err.c')
-rw-r--r--lib/libcrypto/ui/ui_err.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libcrypto/ui/ui_err.c b/lib/libcrypto/ui/ui_err.c
index d983cdd66fa..786bd0dbc3b 100644
--- a/lib/libcrypto/ui/ui_err.c
+++ b/lib/libcrypto/ui/ui_err.c
@@ -101,15 +101,12 @@ static ERR_STRING_DATA UI_str_reasons[]=
void ERR_load_UI_strings(void)
{
- static int init=1;
+#ifndef OPENSSL_NO_ERR
- if (init)
+ if (ERR_func_error_string(UI_str_functs[0].error) == NULL)
{
- init=0;
-#ifndef OPENSSL_NO_ERR
ERR_load_strings(0,UI_str_functs);
ERR_load_strings(0,UI_str_reasons);
-#endif
-
}
+#endif
}