diff options
author | jsing <> | 2019-11-04 15:25:54 +0000 |
---|---|---|
committer | jsing <> | 2019-11-04 15:25:54 +0000 |
commit | cdac03400681d14062d03c58264811f23fedae2a (patch) | |
tree | 7b2bc40f34d97236cf9bf95d83ee90263ed56830 /src/usr.bin/openssl/openssl.c | |
parent | c55581ae1fa4871bb28fa65dd71e381243edc5d3 (diff) | |
download | openbsd-cdac03400681d14062d03c58264811f23fedae2a.tar.gz openbsd-cdac03400681d14062d03c58264811f23fedae2a.tar.bz2 openbsd-cdac03400681d14062d03c58264811f23fedae2a.zip |
Hook openssl(1) cms back up.
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index dbd15c80a8..42b9b91b7a 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.29 2019/03/17 17:46:00 tb Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.30 2019/11/04 15:25:54 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 | * |
@@ -154,6 +154,9 @@ FUNCTION functions[] = { | |||
154 | { FUNC_TYPE_GENERAL, "ca", ca_main }, | 154 | { FUNC_TYPE_GENERAL, "ca", ca_main }, |
155 | { FUNC_TYPE_GENERAL, "certhash", certhash_main }, | 155 | { FUNC_TYPE_GENERAL, "certhash", certhash_main }, |
156 | { FUNC_TYPE_GENERAL, "ciphers", ciphers_main }, | 156 | { FUNC_TYPE_GENERAL, "ciphers", ciphers_main }, |
157 | #ifndef OPENSSL_NO_CMS | ||
158 | { FUNC_TYPE_GENERAL, "cms", cms_main }, | ||
159 | #endif | ||
157 | { FUNC_TYPE_GENERAL, "crl2pkcs7", crl2pkcs7_main }, | 160 | { FUNC_TYPE_GENERAL, "crl2pkcs7", crl2pkcs7_main }, |
158 | { FUNC_TYPE_GENERAL, "crl", crl_main }, | 161 | { FUNC_TYPE_GENERAL, "crl", crl_main }, |
159 | { FUNC_TYPE_GENERAL, "dgst", dgst_main }, | 162 | { FUNC_TYPE_GENERAL, "dgst", dgst_main }, |