[openssl] master update

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


The branch master has been updated
       via  9e1b6f3cdc9258b6759d00cd23819925c9e4c391 (commit)
      from  2f9ded524c2c95ab4efcc12b14e098eb4613d2f5 (commit)


- Log -----------------------------------------------------------------
commit 9e1b6f3cdc9258b6759d00cd23819925c9e4c391
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)
    
    (cherry picked from commit c1dc3536a89d71f8545f3c70bee2332f389a871d)

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

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