From 30fecae0524b55bd4bfa97e601909379a8fc079b Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Wed, 26 Aug 2020 00:10:20 +0200 Subject: [PATCH] curl: Use wolfssl by default Instead of using mbedtls by default use wolfssl. We now integrate wolfssl in the default build so use it also as default ssl library for curl. Signed-off-by: Hauke Mehrtens --- net/curl/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/curl/Config.in b/net/curl/Config.in index 9afeb00bc..05effa0e7 100644 --- a/net/curl/Config.in +++ b/net/curl/Config.in @@ -4,7 +4,7 @@ comment "SSL support" choice prompt "Selected SSL library" - default LIBCURL_MBEDTLS + default LIBCURL_WOLFSSL config LIBCURL_MBEDTLS bool "mbed TLS"