mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
f3870546a5
Changelog: https://github.com/Mbed-TLS/mbedtls/releases/tag/v2.28.1 This release of Mbed TLS provides bug fixes and minor enhancements. This release includes fixes for security issues. The build problem was reported upstream: https://github.com/Mbed-TLS/mbedtls/issues/6243 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
23 lines
709 B
Diff
23 lines
709 B
Diff
Fix a compile problem introduced in commit 331c3421d1f0 ("Address review comments")
|
|
|
|
Bug report: https://github.com/Mbed-TLS/mbedtls/issues/6243
|
|
|
|
--- a/programs/ssl/ssl_server2.c
|
|
+++ b/programs/ssl/ssl_server2.c
|
|
@@ -2511,7 +2511,6 @@ int main( int argc, char *argv[] )
|
|
}
|
|
key_cert_init2 = 2;
|
|
#endif /* MBEDTLS_ECDSA_C */
|
|
- }
|
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
if( opt.key_opaque != 0 )
|
|
@@ -2540,6 +2539,7 @@ int main( int argc, char *argv[] )
|
|
}
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
#endif /* MBEDTLS_CERTS_C */
|
|
+ }
|
|
|
|
mbedtls_printf( " ok (key types: %s - %s)\n", mbedtls_pk_get_name( &pkey ), mbedtls_pk_get_name( &pkey2 ) );
|
|
#endif /* MBEDTLS_X509_CRT_PARSE_C */
|