[openssl] master update

Dr. Paul Dale pauli at openssl.org
Thu Jul 8 04:11:41 UTC 2021


The branch master has been updated
       via  0588778f5ef5c5840e00879a1f62775e4c7a2f17 (commit)
      from  02db7354fe780c8bfb34b3f0ed73595cb9ac6570 (commit)


- Log -----------------------------------------------------------------
commit 0588778f5ef5c5840e00879a1f62775e4c7a2f17
Author: Randall S. Becker <rsbecker at nexbridge.com>
Date:   Tue Jul 6 12:42:22 2021 -0500

    Made foreign bit field unsigned in evp.h
    
    Fixes #16010
    
    Signed-off-by: Randall S. Becker <rsbecker at nexbridge.com>
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Ben Kaduk <kaduk at mit.edu>
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/16011)

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

Summary of changes:
 include/crypto/evp.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/crypto/evp.h b/include/crypto/evp.h
index 16e55cd9a2..3707977d9d 100644
--- a/include/crypto/evp.h
+++ b/include/crypto/evp.h
@@ -686,7 +686,7 @@ struct evp_pkey_st {
 #ifndef FIPS_MODULE
     STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */
     int save_parameters;
-    int foreign:1; /* the low-level key is using an engine or an app-method */
+    unsigned int foreign:1; /* the low-level key is using an engine or an app-method */
     CRYPTO_EX_DATA ex_data;
 #endif
 


More information about the openssl-commits mailing list