From b7c11edb4a7ea84e4862e0573a72fe7e74888841 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 11 Oct 2024 05:52:13 +0200 Subject: [PATCH] mbedTLS: Fix typo in error message --- ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl.c b/ssl.c index 44e15574..6206853c 100644 --- a/ssl.c +++ b/ssl.c @@ -473,7 +473,7 @@ extern int create_client_ssl_connection(struct client_state *csp) { mbedtls_strerror(ret, err_buf, sizeof(err_buf)); log_error(LOG_LEVEL_ERROR, - "medtls_ssl_handshake with client failed: %s", err_buf); + "mbedtls_ssl_handshake with client failed: %s", err_buf); ret = -1; goto exit; } -- 2.49.0