[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sat Mar 12 00:13:21 UTC 2016


The branch master has been updated
       via  239b84e592386d6053e16295f80bb85f65ce3ef9 (commit)
      from  c3caf7603574184a2cf95134e679a2ff69d6ef05 (commit)


- Log -----------------------------------------------------------------
commit 239b84e592386d6053e16295f80bb85f65ce3ef9
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Mar 11 19:22:58 2016 +0100

    Because bn_expand2 is declared non-static, it must not be static
    
    That doesn't change even to make a dummy to hide its unavailability.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

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

diff --git a/test/bntest.c b/test/bntest.c
index 53769aa..57ccc1e 100644
--- a/test/bntest.c
+++ b/test/bntest.c
@@ -91,7 +91,7 @@
  * avoid possible clashes with libcrypto, we rename it first, using a macro.
  */
 #define bn_expand2 dummy_bn_expand2
-static BIGNUM *bn_expand2(BIGNUM *b, int words) { return NULL; }
+BIGNUM *bn_expand2(BIGNUM *b, int words) { return NULL; }
 
 #include "../crypto/bn/bn_lcl.h"
 


More information about the openssl-commits mailing list