summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2019-09-09 17:56:21 +0000
committerjsing <>2019-09-09 17:56:21 +0000
commit04c7d3e8b6cca3886df6a6a1bba0d0e29951da8c (patch)
treec4fcead16facaf10a045a8bd47943a6a0524a063 /src
parent0f582df15e8337f01b1f747d7a848d1be6c7b25d (diff)
downloadopenbsd-04c7d3e8b6cca3886df6a6a1bba0d0e29951da8c.tar.gz
openbsd-04c7d3e8b6cca3886df6a6a1bba0d0e29951da8c.tar.bz2
openbsd-04c7d3e8b6cca3886df6a6a1bba0d0e29951da8c.zip
Load CMS error strings.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/err/err_all.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c
index 24de3c9c15..e641238e28 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.24 2018/03/17 16:20:01 beck Exp $ */ 1/* $OpenBSD: err_all.c,v 1.25 2019/09/09 17:56:21 jsing 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 *
@@ -66,6 +66,7 @@
66#include <openssl/bn.h> 66#include <openssl/bn.h>
67#include <openssl/buffer.h> 67#include <openssl/buffer.h>
68#include <openssl/conf.h> 68#include <openssl/conf.h>
69#include <openssl/cms.h>
69#include <openssl/dso.h> 70#include <openssl/dso.h>
70#include <openssl/err.h> 71#include <openssl/err.h>
71#include <openssl/evp.h> 72#include <openssl/evp.h>
@@ -154,6 +155,9 @@ ERR_load_crypto_strings_internal(void)
154#ifndef OPENSSL_NO_GOST 155#ifndef OPENSSL_NO_GOST
155 ERR_load_GOST_strings(); 156 ERR_load_GOST_strings();
156#endif 157#endif
158#ifndef OPENSSL_NO_CMS
159 ERR_load_CMS_strings();
160#endif
157#endif 161#endif
158} 162}
159 163