[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Tue Oct 23 08:56:13 UTC 2018


The branch master has been updated
       via  f81b043ad856d8b9af5239a4978f8bd4b965dab9 (commit)
      from  97b0b713fbeb74d7531fe88a2362250c6324655f (commit)


- Log -----------------------------------------------------------------
commit f81b043ad856d8b9af5239a4978f8bd4b965dab9
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Oct 23 10:15:12 2018 +0200

    RAND: ensure INT32_MAX is defined
    
    This value is used to set DRBG_MAX_LENGTH
    
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    (Merged from https://github.com/openssl/openssl/pull/7467)

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

Summary of changes:
 crypto/rand/rand_lcl.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/crypto/rand/rand_lcl.h b/crypto/rand/rand_lcl.h
index 13f8cc8..9004809 100644
--- a/crypto/rand/rand_lcl.h
+++ b/crypto/rand/rand_lcl.h
@@ -17,6 +17,8 @@
 # include <openssl/ec.h>
 # include <openssl/rand_drbg.h>
 
+# include "internal/numbers.h"
+
 /* How many times to read the TSC as a randomness source. */
 # define TSC_READ_COUNT                 4
 


More information about the openssl-commits mailing list