]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix typos
authorAlan T. DeKok <aland@freeradius.org>
Thu, 17 Aug 2023 14:13:57 +0000 (10:13 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 17 Aug 2023 14:13:57 +0000 (10:13 -0400)
src/main/tls.c

index 74efee6de7f690b1133f3373dbe8682b97fe44b2..8bbc7aac33e18e8ac074967146fbb440200392ac 100644 (file)
@@ -4185,8 +4185,8 @@ post_ca:
                /*
                 *      RADIUS 1.1 requires TLS 1.3 or later.
                 */
-               if (conf->radius11 && (min_version < TLS1_3_VERSION) {
-                       WARN(LOG_PREFIX ": The configuration allows TLS <1.3.  RADIUSv1.1 MUST use TLS 1.3");
+               if (conf->radiusv11 && (min_version < TLS1_3_VERSION)) {
+                       WARN(LOG_PREFIX ": The configuration allows TLS <1.3.  RADIUS/1.1 MUST use TLS 1.3");
                        WARN(LOG_PREFIX ": Please set: tls_min_version = '1.3'");
                }
 #endif