From 14f29f49d99785d2e275fd406ac4227273b08b7e Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 6 May 2022 20:49:01 +0000 Subject: Add missing ERR_load_{COMP,CT,KDF}_strings() ok beck --- src/lib/libcrypto/err/err_all.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/lib') 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 @@ -/* $OpenBSD: err_all.c,v 1.25 2019/09/09 17:56:21 jsing Exp $ */ +/* $OpenBSD: err_all.c,v 1.26 2022/05/06 20:49:01 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -65,11 +65,14 @@ #include #include #include +#include #include #include +#include #include #include #include +#include #include #include #include @@ -152,12 +155,19 @@ ERR_load_crypto_strings_internal(void) #endif ERR_load_OCSP_strings(); ERR_load_UI_strings(); +#ifdef ZLIB + ERR_load_COMP_strings(); +#endif #ifndef OPENSSL_NO_GOST ERR_load_GOST_strings(); #endif #ifndef OPENSSL_NO_CMS ERR_load_CMS_strings(); #endif +#ifndef OPENSSL_NO_CT + ERR_load_CT_strings(); +#endif + ERR_load_KDF_strings(); #endif } -- cgit v1.2.3-55-g6feb