[openssl-commits] [openssl] master update

nic.tuv at gmail.com nic.tuv at gmail.com
Sat Oct 13 03:41:43 UTC 2018


The branch master has been updated
       via  628ee796389b555ddb5fc28355e16e9417ab1724 (commit)
      from  d1c008f66bad435b18aa45aa59f72bed7c682849 (commit)


- Log -----------------------------------------------------------------
commit 628ee796389b555ddb5fc28355e16e9417ab1724
Author: Tomas Mraz <tmraz at fedoraproject.org>
Date:   Tue Oct 9 18:37:10 2018 +0200

    Fix copy&paste error found in Coverity scan
    
    Reviewed-by: Nicola Tuveri <nic.tuv at gmail.com>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/7377)

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

Summary of changes:
 apps/speed.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/speed.c b/apps/speed.c
index 27b4d50..833bb9b 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -2947,7 +2947,7 @@ int speed_main(int argc, char **argv)
 
             if (rsa_count <= 1) {
                 /* if longer than 10s, don't do any more */
-                for (testnum++; testnum < EC_NUM; testnum++)
+                for (testnum++; testnum < ECDSA_NUM; testnum++)
                     ecdsa_doit[testnum] = 0;
             }
         }


More information about the openssl-commits mailing list