From 3bf559678802e4bc352c68caae7bb696ecab1b6b Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 24 Aug 2020 11:13:04 +0200 Subject: [PATCH] log_ssl_errors(): Refer to TLS/SSL errors instead of just SSL errors Sponsored by: Robert Klemme --- openssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssl.c b/openssl.c index 355a7ec2..51fcad58 100644 --- a/openssl.c +++ b/openssl.c @@ -1170,11 +1170,11 @@ static void log_ssl_errors(int debuglevel, const char* fmt, ...) va_end(args); /* * In case if called by mistake and there were - * no SSL errors let's report it to the log. + * no TLS/SSL errors let's report it to the log. */ if (!reported) { - log_error(debuglevel, "%s: no ssl errors detected", prefix); + log_error(debuglevel, "%s: no TLS/SSL errors detected", prefix); } } -- 2.39.2