[openssl] openssl-3.0 update

Dr. Paul Dale pauli at openssl.org
Thu Nov 25 06:04:51 UTC 2021


The branch openssl-3.0 has been updated
       via  7f3211743ea15fd86e6c138d96aec3bce7bd6b21 (commit)
      from  dd0c0eb7a54aed1d0b8b71ad22253558dc26d646 (commit)


- Log -----------------------------------------------------------------
commit 7f3211743ea15fd86e6c138d96aec3bce7bd6b21
Author: Pauli <ppzgs1 at gmail.com>
Date:   Wed Nov 24 13:32:47 2021 +1000

    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 at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17125)
    
    (cherry picked from commit 01fde90eec721b64bc0e1c01cd94a9fd431adcc6)

-----------------------------------------------------------------------

Summary of changes:
 doc/man7/ossl_store.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/man7/ossl_store.pod b/doc/man7/ossl_store.pod
index 68503cd092..a2c6260061 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 */


More information about the openssl-commits mailing list