From 24a3da600356eb79d7b896f093ba3ddc2501b91a Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 6 May 2022 20:49:01 +0000 Subject: [PATCH] Add missing ERR_load_{COMP,CT,KDF}_strings() ok beck --- lib/libcrypto/err/err_all.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/libcrypto/err/err_all.c b/lib/libcrypto/err/err_all.c index e641238e28d..17696585131 100644 --- a/lib/libcrypto/err/err_all.c +++ b/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 } -- 2.20.1