[openssl] openssl-3.0 update

Dr. Paul Dale pauli at openssl.org
Tue Feb 8 23:38:03 UTC 2022


The branch openssl-3.0 has been updated
       via  e44b212bdce225fd2d7e2349a7f787e7c9ade4fd (commit)
      from  53234cb0f408bbfbb04ea0e12f1fc61feb2aa600 (commit)


- Log -----------------------------------------------------------------
commit e44b212bdce225fd2d7e2349a7f787e7c9ade4fd
Author: Daniel <daniel at openssl.org>
Date:   Sun Feb 6 15:01:14 2022 +0100

    Send auxiliary messages to bio_err.
    
    Fixes openssl#17613.
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17650)
    
    (cherry picked from commit 2a6994cfa08368a710d66caaae4fc07ad35631bf)

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

Summary of changes:
 apps/x509.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/x509.c b/apps/x509.c
index 2880ae792a..c9c10c260e 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -706,9 +706,9 @@ int x509_main(int argc, char **argv)
                        : "Certificate request self-signature did not match the contents\n");
             goto end;
         }
-        BIO_printf(out, "Certificate request self-signature ok\n");
+        BIO_printf(bio_err, "Certificate request self-signature ok\n");
 
-        print_name(out, "subject=", X509_REQ_get_subject_name(req));
+        print_name(bio_err, "subject=", X509_REQ_get_subject_name(req));
     } else if (!x509toreq && ext_copy != EXT_COPY_UNSET) {
         BIO_printf(bio_err, "Warning: ignoring -copy_extensions since neither -x509toreq nor -req is given\n");
     }


More information about the openssl-commits mailing list