The branch master has been updated
via 0588778f5ef5c5840e00879a1f62775e4c7a2f17 (commit)
from 02db7354fe780c8bfb34b3f0ed73595cb9ac6570 (commit)
- Log -----------------------------------------------------------------
commit 0588778f5ef5c5840e00879a1f62775e4c7a2f17
Author: Randall S. Becker <[email protected]>
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 <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Ben Kaduk <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(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