[openssl] openssl-3.0 update

Richard Levitte levitte at openssl.org
Fri Sep 10 10:15:37 UTC 2021


The branch openssl-3.0 has been updated
       via  c1dc3536a89d71f8545f3c70bee2332f389a871d (commit)
      from  49ca3979f903334e192e75eeafb371824d1c14f6 (commit)


- Log -----------------------------------------------------------------
commit c1dc3536a89d71f8545f3c70bee2332f389a871d
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Sep 8 21:58:19 2021 +0200

    Fix 'openssl speed' information printout
    
    Most of all, this reduces the following:
    
        built on: built on: Wed Sep  8 19:41:55 2021 UTC
    
    to:
    
        built on: Wed Sep  8 19:41:55 2021 UTC
    
    Reviewed-by: Paul Dale <pauli at openssl.org>
    Reviewed-by: Dmitry Belyavskiy <beldmit at gmail.com>
    (Merged from https://github.com/openssl/openssl/pull/16563)

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

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

diff --git a/apps/speed.c b/apps/speed.c
index 830a502656..1e5295398f 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -3092,10 +3092,9 @@ int speed_main(int argc, char **argv)
 #endif
     if (!mr) {
         printf("version: %s\n", OpenSSL_version(OPENSSL_FULL_VERSION_STRING));
-        printf("built on: %s\n", OpenSSL_version(OPENSSL_BUILT_ON));
-        printf("options:");
-        printf("%s ", BN_options());
-        printf("\n%s\n", OpenSSL_version(OPENSSL_CFLAGS));
+        printf("%s\n", OpenSSL_version(OPENSSL_BUILT_ON));
+        printf("options: %s\n", BN_options());
+        printf("%s\n", OpenSSL_version(OPENSSL_CFLAGS));
         printf("%s\n", OpenSSL_version(OPENSSL_CPU_INFO));
     }
 


More information about the openssl-commits mailing list