From: Felix Fietkau Date: Sun, 7 Apr 2024 16:54:04 +0000 (+0200) Subject: mbedtls: add missing ifdef for build with disabled debug X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d61493a4420417cbf9931ffee8c862faf04f2967;p=project%2Fustream-ssl.git mbedtls: add missing ifdef for build with disabled debug Signed-off-by: Felix Fietkau --- diff --git a/ustream-mbedtls.c b/ustream-mbedtls.c index 73c4a5e..ff2c9a9 100644 --- a/ustream-mbedtls.c +++ b/ustream-mbedtls.c @@ -483,7 +483,9 @@ __hidden void __ustream_ssl_set_debug(struct ustream_ssl_ctx *ctx, int level, ctx->debug_cb = cb; ctx->debug_cb_priv = cb_priv; mbedtls_ssl_conf_dbg(&ctx->conf, debug_cb, ctx); +#ifdef MBEDTLS_DEBUG_C mbedtls_debug_set_threshold(level); +#endif } __hidden void *__ustream_ssl_session_new(struct ustream_ssl_ctx *ctx)