~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/err/err_all.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
#endif
88
88
#include <openssl/ocsp.h>
89
89
#include <openssl/err.h>
 
90
#include <openssl/fips.h>
90
91
 
91
92
void ERR_load_crypto_strings(void)
92
93
        {
130
131
        ERR_load_OCSP_strings();
131
132
        ERR_load_UI_strings();
132
133
#endif
 
134
#ifdef OPENSSL_FIPS
 
135
        ERR_load_FIPS_strings();
 
136
#endif
133
137
        }