Merge branch 'bugfix/fix_mbedtls_flag_defined_always' into 'master'

Fixed TLS 1.1 still being enables even if disabled via config.

Closes IDFGH-3755

See merge request espressif/esp-idf!9905
This commit is contained in:
Mahavir Jain 2020-08-05 13:22:30 +08:00
commit 48b659b474

View File

@ -976,6 +976,8 @@
*/
#ifdef CONFIG_MBEDTLS_SSL_PROTO_TLS1_1
#define MBEDTLS_SSL_PROTO_TLS1_1
#else
#undef MBEDTLS_SSL_PROTO_TLS1_1
#endif
/**