The branch master has been updated
       via  c08138e500ed27c6aa3db98194bd04c400213db3 (commit)
      from  0dd19e750f730b44a38ee5c8aaf235f690386f9b (commit)


- Log -----------------------------------------------------------------
commit c08138e500ed27c6aa3db98194bd04c400213db3
Author: Juergen Christ <[email protected]>
Date:   Mon Mar 22 10:04:26 2021 +0100

    Fix compilation under -Werror
    
    With strict warnings and warnings as error, openssl currently does not 
compile
    due to a missing include.
    
    Signed-off-by: Juergen Christ <[email protected]>
    
    Reviewed-by: Tomas Mraz <[email protected]>
    Reviewed-by: Patrick Steuer <[email protected]>
    Reviewed-by: Paul Dale <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/14640)

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

Summary of changes:
 crypto/ec/ecx_meth.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/ec/ecx_meth.c b/crypto/ec/ecx_meth.c
index d68189036b..00896f4186 100644
--- a/crypto/ec/ecx_meth.c
+++ b/crypto/ec/ecx_meth.c
@@ -18,6 +18,7 @@
 #include <openssl/ec.h>
 #include <openssl/core_names.h>
 #include <openssl/param_build.h>
+#include <openssl/rand.h>
 #include "internal/cryptlib.h"
 #include "internal/provider.h"
 #include "crypto/asn1.h"

Reply via email to