X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=crypto%2Fstore%2Fstr_err.c;h=924edf050581936a2138b8929434a98b7a4909f0;hb=632d83f0a3fbda2e7f4e556183792597b7db88fc;hp=5c6fe832e860b045225382a8915c28dc985e8afa;hpb=8afca8d9c60c3d7db6f9bc94a97c77f016fc139d;p=openssl.git diff --git a/crypto/store/str_err.c b/crypto/store/str_err.c index 5c6fe832e8..924edf0505 100644 --- a/crypto/store/str_err.c +++ b/crypto/store/str_err.c @@ -1,6 +1,6 @@ /* crypto/store/str_err.c */ /* ==================================================================== - * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. + * Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -200,15 +200,12 @@ static ERR_STRING_DATA STORE_str_reasons[]= void ERR_load_STORE_strings(void) { - static int init=1; +#ifndef OPENSSL_NO_ERR - if (init) + if (ERR_func_error_string(STORE_str_functs[0].error) == NULL) { - init=0; -#ifndef OPENSSL_NO_ERR ERR_load_strings(0,STORE_str_functs); ERR_load_strings(0,STORE_str_reasons); -#endif - } +#endif }