]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
int_ssl_status_check should log to the request log
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 4 Jun 2015 22:40:45 +0000 (16:40 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 4 Jun 2015 22:40:45 +0000 (16:40 -0600)
src/main/tls.c

index 708959334c1c7a8b825ad11e96048bf5b83e034c..b3d49b71c05be4089e3f7b08c2ee514e4c837133 100644 (file)
@@ -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: