mbedTLS: Fix typo in error message
authorFabian Keil <fk@fabiankeil.de>
Fri, 11 Oct 2024 03:52:13 +0000 (05:52 +0200)
committerFabian Keil <fk@fabiankeil.de>
Thu, 19 Dec 2024 13:49:04 +0000 (14:49 +0100)
ssl.c

diff --git a/ssl.c b/ssl.c
index 44e1557..6206853 100644 (file)
--- 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;
       }