~ubuntu-branches/ubuntu/lucid/openssl/lucid-security

« back to all changes in this revision

Viewing changes to crypto/conf/conf_err.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2007-03-10 17:11:46 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20070310171146-uo85b7ii5pi1unm2
Tags: upstream-0.9.8e
ImportĀ upstreamĀ versionĀ 0.9.8e

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
 
119
119
void ERR_load_CONF_strings(void)
120
120
        {
121
 
        static int init=1;
 
121
#ifndef OPENSSL_NO_ERR
122
122
 
123
 
        if (init)
 
123
        if (ERR_func_error_string(CONF_str_functs[0].error) == NULL)
124
124
                {
125
 
                init=0;
126
 
#ifndef OPENSSL_NO_ERR
127
125
                ERR_load_strings(0,CONF_str_functs);
128
126
                ERR_load_strings(0,CONF_str_reasons);
129
 
#endif
130
 
 
131
127
                }
 
128
#endif
132
129
        }