diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2018-12-09 23:32:09 +0300 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-01-27 12:26:09 +1100 |
commit | c7ed17bc4bb6127d7b6db841b453462f4ba96514 (patch) | |
tree | 18d4ab5aaa60b3cdd23cf1940c9d553b1c96550f /extmod/modussl_mbedtls.c | |
parent | 285d265eee834c763749f54a6d806e284be1160c (diff) | |
download | micropython-c7ed17bc4bb6127d7b6db841b453462f4ba96514.tar.gz micropython-c7ed17bc4bb6127d7b6db841b453462f4ba96514.zip |
extmod/modussl_mbedtls: Remove deprecated mbedtls/net.h header include.
This header is deprecated as of mbedtls 2.8.0, as shipped with Ubuntu
18.04. Leads to #warning which is promoted to error with uPy compile
options.
Note that the current version of mbedtls is 2.14 at the time of writing.
Diffstat (limited to 'extmod/modussl_mbedtls.c')
-rw-r--r-- | extmod/modussl_mbedtls.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/extmod/modussl_mbedtls.c b/extmod/modussl_mbedtls.c index ce3db0fd92..348bba4c80 100644 --- a/extmod/modussl_mbedtls.c +++ b/extmod/modussl_mbedtls.c @@ -36,7 +36,6 @@ // mbedtls_time_t #include "mbedtls/platform.h" -#include "mbedtls/net.h" #include "mbedtls/ssl.h" #include "mbedtls/x509_crt.h" #include "mbedtls/pk.h" |