From: Arran Cudbard-Bell Date: Thu, 4 Jun 2015 22:40:45 +0000 (-0600) Subject: int_ssl_status_check should log to the request log X-Git-Tag: release_3_0_9~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94e71f6510f1e34fc1cdedd3fa1cd70334d1c7c6;p=thirdparty%2Ffreeradius-server.git int_ssl_status_check should log to the request log --- diff --git a/src/main/tls.c b/src/main/tls.c index 708959334c1..b3d49b71c05 100644 --- a/src/main/tls.c +++ b/src/main/tls.c @@ -482,13 +482,11 @@ static int int_ssl_check(REQUEST *request, SSL *s, int ret, char const *text) * being regarded as "dead". */ case SSL_ERROR_SYSCALL: - ERROR("SSL: %s failed in a system call (%d), TLS session fails.", - text, ret); + REDEBUG("%s failed in a system call (%d), TLS session failed", text, ret); return 0; case SSL_ERROR_SSL: - ERROR("SSL: %s failed inside of TLS (%d), TLS session fails.", - text, ret); + REDEBUG("%s failed inside of TLS (%d), TLS session failed", text, ret); return 0; default: