diff options
author | tb <> | 2022-05-06 20:49:01 +0000 |
---|---|---|
committer | tb <> | 2022-05-06 20:49:01 +0000 |
commit | 14f29f49d99785d2e275fd406ac4227273b08b7e (patch) | |
tree | c69e73b122ebd7b39e4eefc120923aa6f808ab4e /src/lib | |
parent | 06c2b32025e69d4ed54a0d0d934387a6f5088af9 (diff) | |
download | openbsd-14f29f49d99785d2e275fd406ac4227273b08b7e.tar.gz openbsd-14f29f49d99785d2e275fd406ac4227273b08b7e.tar.bz2 openbsd-14f29f49d99785d2e275fd406ac4227273b08b7e.zip |
Add missing ERR_load_{COMP,CT,KDF}_strings()
ok beck
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/err/err_all.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c index e641238e28..1769658513 100644 --- a/src/lib/libcrypto/err/err_all.c +++ b/src/lib/libcrypto/err/err_all.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err_all.c,v 1.25 2019/09/09 17:56:21 jsing Exp $ */ | 1 | /* $OpenBSD: err_all.c,v 1.26 2022/05/06 20:49:01 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -65,11 +65,14 @@ | |||
65 | #include <openssl/bio.h> | 65 | #include <openssl/bio.h> |
66 | #include <openssl/bn.h> | 66 | #include <openssl/bn.h> |
67 | #include <openssl/buffer.h> | 67 | #include <openssl/buffer.h> |
68 | #include <openssl/comp.h> | ||
68 | #include <openssl/conf.h> | 69 | #include <openssl/conf.h> |
69 | #include <openssl/cms.h> | 70 | #include <openssl/cms.h> |
71 | #include <openssl/ct.h> | ||
70 | #include <openssl/dso.h> | 72 | #include <openssl/dso.h> |
71 | #include <openssl/err.h> | 73 | #include <openssl/err.h> |
72 | #include <openssl/evp.h> | 74 | #include <openssl/evp.h> |
75 | #include <openssl/kdf.h> | ||
73 | #include <openssl/objects.h> | 76 | #include <openssl/objects.h> |
74 | #include <openssl/ocsp.h> | 77 | #include <openssl/ocsp.h> |
75 | #include <openssl/pem2.h> | 78 | #include <openssl/pem2.h> |
@@ -152,12 +155,19 @@ ERR_load_crypto_strings_internal(void) | |||
152 | #endif | 155 | #endif |
153 | ERR_load_OCSP_strings(); | 156 | ERR_load_OCSP_strings(); |
154 | ERR_load_UI_strings(); | 157 | ERR_load_UI_strings(); |
158 | #ifdef ZLIB | ||
159 | ERR_load_COMP_strings(); | ||
160 | #endif | ||
155 | #ifndef OPENSSL_NO_GOST | 161 | #ifndef OPENSSL_NO_GOST |
156 | ERR_load_GOST_strings(); | 162 | ERR_load_GOST_strings(); |
157 | #endif | 163 | #endif |
158 | #ifndef OPENSSL_NO_CMS | 164 | #ifndef OPENSSL_NO_CMS |
159 | ERR_load_CMS_strings(); | 165 | ERR_load_CMS_strings(); |
160 | #endif | 166 | #endif |
167 | #ifndef OPENSSL_NO_CT | ||
168 | ERR_load_CT_strings(); | ||
169 | #endif | ||
170 | ERR_load_KDF_strings(); | ||
161 | #endif | 171 | #endif |
162 | } | 172 | } |
163 | 173 | ||