From d61493a4420417cbf9931ffee8c862faf04f2967 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 7 Apr 2024 18:54:04 +0200 Subject: [PATCH] mbedtls: add missing ifdef for build with disabled debug Signed-off-by: Felix Fietkau --- ustream-mbedtls.c | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.30.2