From f8fde3f1e31529d41d23107832fe2520ad5309bb Mon Sep 17 00:00:00 2001 From: Michael Ortmann <41313082+michaelortmann@users.noreply.github.com> Date: Thu, 1 Aug 2024 19:30:25 +0200 Subject: [PATCH] Remove forgotten debug --- src/tls.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tls.c b/src/tls.c index 5c1e97bde..c57e48348 100644 --- a/src/tls.c +++ b/src/tls.c @@ -1028,10 +1028,8 @@ int ssl_handshake(int sock, int flags, int verify, int loglevel, char *host, "TLS: handshake failed due to the following error: %s", ERR_reason_error_string(err)); debug0("TLS: handshake failed due to the following errors: "); - while ((err = ERR_get_error())) { - printf("err = %ul\n", err); + while ((err = ERR_get_error())) debug1("TLS: %s", ERR_error_string(err, NULL)); - } } }