~ubuntu-branches/ubuntu/gutsy/openssl/gutsy-security

« back to all changes in this revision

Viewing changes to crypto/dsa/dsa_err.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2007-03-10 17:11:46 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070310171146-ekahy2avht7qdc4f
Tags: 0.9.8e-4
openssl should depend on libssl0.9.8 0.9.8e-1 since it 
uses some of the defines that changed to functions.
Other things build against libssl or libcrypto shouldn't 
have this problem since they use the old headers.
(Closes: #414283)

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
 
101
101
void ERR_load_DSA_strings(void)
102
102
        {
103
 
        static int init=1;
 
103
#ifndef OPENSSL_NO_ERR
104
104
 
105
 
        if (init)
 
105
        if (ERR_func_error_string(DSA_str_functs[0].error) == NULL)
106
106
                {
107
 
                init=0;
108
 
#ifndef OPENSSL_NO_ERR
109
107
                ERR_load_strings(0,DSA_str_functs);
110
108
                ERR_load_strings(0,DSA_str_reasons);
111
 
#endif
112
 
 
113
109
                }
 
110
#endif
114
111
        }