1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

mbedtls: dont rely on potentially missing version api

https://github.com/warmcat/libwebsockets/issues/3013
This commit is contained in:
Luka Kudra 2023-11-21 17:07:29 +00:00 committed by Andy Green
parent eba1e4aa7f
commit f8eac4e83b

View file

@ -386,9 +386,6 @@ lws_create_context(const struct lws_context_creation_info *info)
#if defined(LWS_WITH_CACHE_NSCOOKIEJAR) && defined(LWS_WITH_CLIENT)
struct lws_cache_creation_info ci;
#endif
#if defined(LWS_WITH_MBEDTLS)
char mbedtls_version[32];
#endif
#if defined(__ANDROID__)
struct rlimit rt;
@ -788,11 +785,7 @@ lws_create_context(const struct lws_context_creation_info *info)
#endif /* network */
#if defined(LWS_WITH_MBEDTLS)
mbedtls_version_get_string(mbedtls_version);
#endif
#if defined(LWS_WITH_MBEDTLS)
lwsl_cx_notice(context, "LWS: %s, MbedTLS-%s %s%s", library_version, mbedtls_version, opts_str, s);
lwsl_cx_notice(context, "LWS: %s, MbedTLS-%s %s%s", library_version, MBEDTLS_VERSION_STRING, opts_str, s);
#else
lwsl_cx_notice(context, "LWS: %s, %s%s", library_version, opts_str, s);
#endif