]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
more cast fixes
authorAlan T. DeKok <aland@freeradius.org>
Sat, 30 Sep 2023 13:28:49 +0000 (09:28 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 30 Sep 2023 13:28:49 +0000 (09:28 -0400)
src/tests/keywords/pairs
src/tests/modules/test/dollar_expansions.unlang
src/tests/modules/test/policy.conf

index e35b15d946bbd09fc8acd21e38ff054645ffc2f2..19a4adbbf69b226c961f41a41e507e36c1a30542 100644 (file)
@@ -46,4 +46,8 @@ if !(&Tmp-String-6 == 'Tmp-Group-0 = { Tmp-String-0 = "This is a string", Tmp-St
        test_fail
 }
 
+&request -= &Tmp-Group-0
+
+
+
 success
index 562e2d9315597280aaf3922469d201ed80b20458..58708b3f819470eadd775ae70f304ba8f5d531ea 100644 (file)
@@ -13,7 +13,7 @@ if (&Fall-Through != ${d_term}) {
        test_fail
 }
 
-if (<bool>"${d_term}" != yes) {
+if ((bool)"${d_term}" != yes) {
        test_fail
 }
 
index ff86844bd273f9c5fc44066d6addbd5913b8a7e6..b9b1117c71e5b77b5e66d277fac0a5c322cb25a1 100644 (file)
@@ -52,7 +52,7 @@ dollar_expansions {
                test_fail
        }
 
-       if (<bool>"${d_term}" != yes) {
+       if ((bool)"${d_term}" != yes) {
                test_fail
        }