diff options
author | djm <> | 2010-10-01 22:59:01 +0000 |
---|---|---|
committer | djm <> | 2010-10-01 22:59:01 +0000 |
commit | fe047d8b632246cb2db3234a0a4f32e5c318857b (patch) | |
tree | 939b752540947d33507b3acc48d76a8bfb7c3dc3 /src/lib/libcrypto/err/err_all.c | |
parent | 2ea67f4aa254b09ded62e6e14fc893bbe6381579 (diff) | |
download | openbsd-fe047d8b632246cb2db3234a0a4f32e5c318857b.tar.gz openbsd-fe047d8b632246cb2db3234a0a4f32e5c318857b.tar.bz2 openbsd-fe047d8b632246cb2db3234a0a4f32e5c318857b.zip |
resolve conflicts, fix local changes
Diffstat (limited to 'src/lib/libcrypto/err/err_all.c')
-rw-r--r-- | src/lib/libcrypto/err/err_all.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c index f21a5276ed..fc049e8e88 100644 --- a/src/lib/libcrypto/err/err_all.c +++ b/src/lib/libcrypto/err/err_all.c | |||
@@ -64,6 +64,7 @@ | |||
64 | #endif | 64 | #endif |
65 | #include <openssl/buffer.h> | 65 | #include <openssl/buffer.h> |
66 | #include <openssl/bio.h> | 66 | #include <openssl/bio.h> |
67 | #include <openssl/comp.h> | ||
67 | #ifndef OPENSSL_NO_RSA | 68 | #ifndef OPENSSL_NO_RSA |
68 | #include <openssl/rsa.h> | 69 | #include <openssl/rsa.h> |
69 | #endif | 70 | #endif |
@@ -94,16 +95,14 @@ | |||
94 | #include <openssl/ui.h> | 95 | #include <openssl/ui.h> |
95 | #include <openssl/ocsp.h> | 96 | #include <openssl/ocsp.h> |
96 | #include <openssl/err.h> | 97 | #include <openssl/err.h> |
97 | #ifdef OPENSSL_FIPS | 98 | #include <openssl/ts.h> |
98 | #include <openssl/fips.h> | ||
99 | #endif | ||
100 | |||
101 | #ifndef OPENSSL_NO_CMS | 99 | #ifndef OPENSSL_NO_CMS |
102 | #include <openssl/cms.h> | 100 | #include <openssl/cms.h> |
103 | #endif | 101 | #endif |
104 | #ifndef OPENSSL_NO_JPAKE | 102 | #ifndef OPENSSL_NO_JPAKE |
105 | #include <openssl/jpake.h> | 103 | #include <openssl/jpake.h> |
106 | #endif | 104 | #endif |
105 | #include <openssl/comp.h> | ||
107 | 106 | ||
108 | void ERR_load_crypto_strings(void) | 107 | void ERR_load_crypto_strings(void) |
109 | { | 108 | { |
@@ -127,6 +126,7 @@ void ERR_load_crypto_strings(void) | |||
127 | ERR_load_ASN1_strings(); | 126 | ERR_load_ASN1_strings(); |
128 | ERR_load_CONF_strings(); | 127 | ERR_load_CONF_strings(); |
129 | ERR_load_CRYPTO_strings(); | 128 | ERR_load_CRYPTO_strings(); |
129 | ERR_load_COMP_strings(); | ||
130 | #ifndef OPENSSL_NO_EC | 130 | #ifndef OPENSSL_NO_EC |
131 | ERR_load_EC_strings(); | 131 | ERR_load_EC_strings(); |
132 | #endif | 132 | #endif |
@@ -143,19 +143,18 @@ void ERR_load_crypto_strings(void) | |||
143 | ERR_load_PKCS12_strings(); | 143 | ERR_load_PKCS12_strings(); |
144 | ERR_load_RAND_strings(); | 144 | ERR_load_RAND_strings(); |
145 | ERR_load_DSO_strings(); | 145 | ERR_load_DSO_strings(); |
146 | ERR_load_TS_strings(); | ||
146 | #ifndef OPENSSL_NO_ENGINE | 147 | #ifndef OPENSSL_NO_ENGINE |
147 | ERR_load_ENGINE_strings(); | 148 | ERR_load_ENGINE_strings(); |
148 | #endif | 149 | #endif |
149 | ERR_load_OCSP_strings(); | 150 | ERR_load_OCSP_strings(); |
150 | ERR_load_UI_strings(); | 151 | ERR_load_UI_strings(); |
151 | #ifdef OPENSSL_FIPS | ||
152 | ERR_load_FIPS_strings(); | ||
153 | #endif | ||
154 | #ifndef OPENSSL_NO_CMS | 152 | #ifndef OPENSSL_NO_CMS |
155 | ERR_load_CMS_strings(); | 153 | ERR_load_CMS_strings(); |
156 | #endif | 154 | #endif |
157 | #ifndef OPENSSL_NO_JPAKE | 155 | #ifndef OPENSSL_NO_JPAKE |
158 | ERR_load_JPAKE_strings(); | 156 | ERR_load_JPAKE_strings(); |
159 | #endif | 157 | #endif |
158 | ERR_load_COMP_strings(); | ||
160 | #endif | 159 | #endif |
161 | } | 160 | } |