diff options
author | 2019-09-09 17:56:21 +0000 | |
---|---|---|
committer | 2019-09-09 17:56:21 +0000 | |
commit | 71f14ff6624461261a8cd75e9d6e89aeab2f0086 (patch) | |
tree | 2de71901b84e5aa37ea1282b56867709d9392c49 | |
parent | Move #include <openssl/cms.h> to more appropriate location (since it is (diff) | |
download | wireguard-openbsd-71f14ff6624461261a8cd75e9d6e89aeab2f0086.tar.xz wireguard-openbsd-71f14ff6624461261a8cd75e9d6e89aeab2f0086.zip |
Load CMS error strings.
-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 } |