diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-09 17:56:22 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-09 17:56:22 +0000 |
commit | eea2ad3dc236ac90f66eeaaedeeefa5bf6a2e087 (patch) | |
tree | 18f71d92f168f1f88bec203239dfe100c366f73f /lib | |
parent | caf72d6db30b119631bec829e37491c4727ef4f3 (diff) |
Load CMS error strings.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/err/err_all.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libcrypto/err/err_all.c b/lib/libcrypto/err/err_all.c index 24de3c9c155..e641238e28d 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.24 2018/03/17 16:20:01 beck Exp $ */ +/* $OpenBSD: err_all.c,v 1.25 2019/09/09 17:56:21 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -66,6 +66,7 @@ #include <openssl/bn.h> #include <openssl/buffer.h> #include <openssl/conf.h> +#include <openssl/cms.h> #include <openssl/dso.h> #include <openssl/err.h> #include <openssl/evp.h> @@ -154,6 +155,9 @@ ERR_load_crypto_strings_internal(void) #ifndef OPENSSL_NO_GOST ERR_load_GOST_strings(); #endif +#ifndef OPENSSL_NO_CMS + ERR_load_CMS_strings(); +#endif #endif } |