[openssl-commits] [openssl] master update

Emilia Kasper emilia at openssl.org
Wed Mar 2 16:47:23 UTC 2016


The branch master has been updated
       via  fdfb8c848679d74fd492e3b306500f2da0570c17 (commit)
      from  e9abfc3a00f5e6f51fc8150e53c65cec125b3082 (commit)


- Log -----------------------------------------------------------------
commit fdfb8c848679d74fd492e3b306500f2da0570c17
Author: Emilia Kasper <emilia at openssl.org>
Date:   Wed Mar 2 17:23:36 2016 +0100

    curve25519: add missing const-qualifier
    
    Reviewed-by: Kurt Roeckx <kurt at openssl.org>

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

Summary of changes:
 crypto/ec/curve25519.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/ec/curve25519.c b/crypto/ec/curve25519.c
index d51632c..8b5fadf 100644
--- a/crypto/ec/curve25519.c
+++ b/crypto/ec/curve25519.c
@@ -1040,7 +1040,7 @@ static uint8_t equal(signed char b, signed char c) {
   return y;
 }
 
-static void cmov(ge_precomp *t, ge_precomp *u, uint8_t b) {
+static void cmov(ge_precomp *t, const ge_precomp *u, uint8_t b) {
   fe_cmov(t->yplusx, u->yplusx, b);
   fe_cmov(t->yminusx, u->yminusx, b);
   fe_cmov(t->xy2d, u->xy2d, b);


More information about the openssl-commits mailing list