diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-11-06 14:30:40 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-11-05 22:45:20 -0800 |
commit | fa9ecb8f87f15ce8bf3ca2e13435a8688ef6e54f (patch) | |
tree | 328358c3dad4966366003f9705d0b48cda67bc90 /meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch | |
parent | 8318a3d490b25a1a85b33f3f632e7dd655f1f9db (diff) | |
download | meta-openembedded-fa9ecb8f87f15ce8bf3ca2e13435a8688ef6e54f.tar.gz |
python3-grpcio: upgrade 1.66.2 -> 1.67.1
0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch
refreshed for 1.67.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch index ff5a8f2987..790ccccc95 100644 --- a/meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch +++ b/meta-python/recipes-devtools/python/python3-grpcio/0001-crypto-use-_Generic-only-if-defined-__cplusplus.patch | |||
@@ -53,7 +53,7 @@ diff --git a/crypto/internal.h b/crypto/internal.h | |||
53 | index f93c2e5..2fca2fb 100644 | 53 | index f93c2e5..2fca2fb 100644 |
54 | --- a/crypto/internal.h | 54 | --- a/crypto/internal.h |
55 | +++ b/crypto/internal.h | 55 | +++ b/crypto/internal.h |
56 | @@ -1193,7 +1193,7 @@ static inline uint64_t CRYPTO_rotr_u64(uint64_t value, int shift) { | 56 | @@ -1206,7 +1206,7 @@ static inline uint64_t CRYPTO_rotr_u64(uint64_t value, int shift) { |
57 | 57 | ||
58 | // CRYPTO_addc_* returns |x + y + carry|, and sets |*out_carry| to the carry | 58 | // CRYPTO_addc_* returns |x + y + carry|, and sets |*out_carry| to the carry |
59 | // bit. |carry| must be zero or one. | 59 | // bit. |carry| must be zero or one. |
@@ -62,7 +62,7 @@ index f93c2e5..2fca2fb 100644 | |||
62 | 62 | ||
63 | #define CRYPTO_GENERIC_ADDC(x, y, carry, out_carry) \ | 63 | #define CRYPTO_GENERIC_ADDC(x, y, carry, out_carry) \ |
64 | (_Generic((x), \ | 64 | (_Generic((x), \ |
65 | @@ -1245,7 +1245,7 @@ static inline uint64_t CRYPTO_addc_u64(uint64_t x, uint64_t y, uint64_t carry, | 65 | @@ -1258,7 +1258,7 @@ static inline uint64_t CRYPTO_addc_u64(uint64_t x, uint64_t y, uint64_t carry, |
66 | 66 | ||
67 | // CRYPTO_subc_* returns |x - y - borrow|, and sets |*out_borrow| to the borrow | 67 | // CRYPTO_subc_* returns |x - y - borrow|, and sets |*out_borrow| to the borrow |
68 | // bit. |borrow| must be zero or one. | 68 | // bit. |borrow| must be zero or one. |