mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
mbedtls: fix API compatibility
Add upstream patch fixing API compatibility with previous releases.
Fixes (hiawatha):
http://autobuild.buildroot.net/results/ce6/ce6b4a50e6aafd06f82eaae688dd8720b982e9c2/
http://autobuild.buildroot.net/results/cde/cdec7ae3565d5b76a9bc50156c6244b44197534e/
http://autobuild.buildroot.net/results/9c1/9c1aec09c03f60bee9dc134da5a29e2671fc3b5e/
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 7bb17b10af)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
d226954543
commit
e1f2e885e6
@@ -0,0 +1,33 @@
|
||||
From 129f50838bf14f4e1319f06f41c827fae9cc4b73 Mon Sep 17 00:00:00 2001
|
||||
From: Jaeden Amero <jaeden.amero@arm.com>
|
||||
Date: Thu, 8 Feb 2018 14:25:36 +0000
|
||||
Subject: [PATCH] dhm: Fix typo in RFC 5114 constants
|
||||
|
||||
We accidentally named the constant MBEDTLS_DHM_RFC5114_MODP_P instead of
|
||||
MBEDTLS_DHM_RFC5114_MODP_2048_P.
|
||||
|
||||
Fixes #1358
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: upstream commit 129f50838bf
|
||||
|
||||
include/mbedtls/dhm.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/include/mbedtls/dhm.h b/include/mbedtls/dhm.h
|
||||
index da2e66b111b6..00fafd8d16f4 100644
|
||||
--- a/include/mbedtls/dhm.h
|
||||
+++ b/include/mbedtls/dhm.h
|
||||
@@ -372,7 +372,7 @@ MBEDTLS_DEPRECATED typedef char const * mbedtls_deprecated_constant_t;
|
||||
* in <em>RFC-5114: Additional Diffie-Hellman Groups for Use with
|
||||
* IETF Standards</em>.
|
||||
*/
|
||||
-#define MBEDTLS_DHM_RFC5114_MODP_P \
|
||||
+#define MBEDTLS_DHM_RFC5114_MODP_2048_P \
|
||||
MBEDTLS_DEPRECATED_STRING_CONSTANT( \
|
||||
"AD107E1E9123A9D0D660FAA79559C51FA20D64E5683B9FD1" \
|
||||
"B54B1597B61D0A75E6FA141DF95A56DBAF9A3C407BA1DF15" \
|
||||
--
|
||||
2.16.1
|
||||
|
||||
Reference in New Issue
Block a user