[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sat Apr 2 20:34:40 UTC 2016


The branch master has been updated
       via  b286cb8eac308b2f2350d01b8b0ccb63909a2e47 (commit)
      from  e3d818588056ec8fed501e1f5970ef9b5b057fc5 (commit)


- Log -----------------------------------------------------------------
commit b286cb8eac308b2f2350d01b8b0ccb63909a2e47
Author: Richard Levitte <levitte at openssl.org>
Date:   Sat Apr 2 19:59:19 2016 +0200

    apps/opt.c: next was only used when NDEBUG undefined, move it inside guard
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

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

diff --git a/apps/opt.c b/apps/opt.c
index f4eba2d..af994bb 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -163,8 +163,8 @@ char *opt_init(int ac, char **av, const OPTIONS *o)
     unknown = NULL;
 
     for (; o->name; ++o) {
-        const OPTIONS *next;
 #ifndef NDEBUG
+        const OPTIONS *next;
         int duplicated, i;
 #endif
 


More information about the openssl-commits mailing list