Skip to content

Commit 53fbe90

Browse files
committed
Mongoose: fix build config typo for WolfSSL
1 parent 0a3566b commit 53fbe90

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

vehicle/OVMS.V3/components/mongoose/component.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
ifdef CONFIG_OVMS_SC_GPL_MONGOOSE
1111
COMPONENT_ADD_INCLUDEDIRS := include mongoose
12-
ifdef CONFIG_MG_SSL_IF_WOLFTLS
12+
ifdef CONFIG_MG_SSL_IF_WOLFSSL
1313
COMPONENT_PRIV_INCLUDEDIRS := ../wolfssl ../wolfssl/wolfssl
1414
COMPONENT_EXTRA_INCLUDES := ${IDF_PATH}/components/freertos/include/freertos
1515
endif

vehicle/OVMS.V3/components/mongoose/include/mg_locals.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "sdkconfig.h"
3535
#include "ovms_log.h"
3636
#include "ovms_malloc.h"
37-
#if CONFIG_MG_ENABLE_SSL && CONFIG_MG_SSL_IF_WOLFTLS
37+
#if CONFIG_MG_ENABLE_SSL && CONFIG_MG_SSL_IF_WOLFSSL
3838
#include "user_settings.h"
3939
#endif
4040

@@ -70,9 +70,9 @@
7070
#define MG_SSL_IF_MBEDTLS_FREE_CERTS 1
7171
#endif // CONFIG_MG_SSL_IF_MBEDTLS
7272

73-
#ifdef CONFIG_MG_SSL_IF_WOLFTLS
73+
#ifdef CONFIG_MG_SSL_IF_WOLFSSL
7474
#define MG_SSL_IF MG_SSL_IF_OPENSSL
75-
#endif // CONFIG_MG_SSL_IF_WOLFTLS
75+
#endif // CONFIG_MG_SSL_IF_WOLFSSL
7676

7777
//#define CS_ENABLE_DEBUG
7878

0 commit comments

Comments
 (0)