]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
no need for these debug messages
authorAlan T. DeKok <aland@freeradius.org>
Tue, 11 Apr 2023 23:56:07 +0000 (19:56 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 12 Apr 2023 00:03:21 +0000 (20:03 -0400)
src/main/listen.c

index 9bd6db39894a7708373b1967889c7af7ce31d3e7..2c7d337cdc9fe097310825e545bf81e1a89a17c0 100644 (file)
@@ -874,17 +874,14 @@ int fr_radiusv11_client_init(fr_tls_server_conf_t *tls)
                        return -1;
                }
                SSL_CTX_set_next_proto_select_cb(tls->ctx, radiusv11_client_alpn_cb, NULL);
-               DEBUG("(TLS) ALPN proxy has radiusv11 = allow");
                break;
 
        case FR_RADIUSV11_REQUIRE:
                if (SSL_CTX_set_alpn_protos(tls->ctx, radiusv11_require_protos, sizeof(radiusv11_require_protos)) != 0) goto fail_protos;
                SSL_CTX_set_next_proto_select_cb(tls->ctx, radiusv11_client_alpn_cb, NULL);
-               DEBUG("(TLS) ALPN proxy has radiusv11 = require");
                break;
 
        default:
-               DEBUG("(TLS) ALPN proxy has radiusv11 = forbid");
                break;
        }