summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-11-24 13:32:47 +1000
committerPauli <ppzgs1@gmail.com>2021-11-25 16:05:27 +1000
commit5f422920c171077d8e8d49ad69632711f1ac7e5a (patch)
treeed5e8ae77c7cb06733bb5a6dbe7861220a53d134 /doc
parentfd0fd729bb6c75e266b881580d69d679af044cad (diff)
doc: fix macro name
OSSL_STORE_INFO_X509 doesn't exist. It should be OSSL_STORE_INFO_CERT. Fixes #17121 Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17125) (cherry picked from commit 01fde90eec721b64bc0e1c01cd94a9fd431adcc6)
Diffstat (limited to 'doc')
-rw-r--r--doc/man7/ossl_store.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man7/ossl_store.pod b/doc/man7/ossl_store.pod
index b706196851..dd23d76fa5 100644
--- a/doc/man7/ossl_store.pod
+++ b/doc/man7/ossl_store.pod
@@ -58,7 +58,7 @@ other encoding is undefined.
* here just one example
*/
switch (OSSL_STORE_INFO_get_type(info)) {
- case OSSL_STORE_INFO_X509:
+ case OSSL_STORE_INFO_CERT:
/* Print the X.509 certificate text */
X509_print_fp(stdout, OSSL_STORE_INFO_get0_CERT(info));
/* Print the X.509 certificate PEM output */