From: Alan T. DeKok Date: Wed, 4 Oct 2023 14:48:49 +0000 (-0400) Subject: clean up after other fix X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd14e863c56324fe65b747a2aad4ced5b6b8946c;p=thirdparty%2Ffreeradius-server.git clean up after other fix using if (&reply.WiMAX.Capability.Release == "foo") will now parse correctly, but will fail at run time. The Release attribute should be parented by Capability, but it is not. So we need more tests for aliases :( --- diff --git a/src/tests/keywords/xlat-unknown b/src/tests/keywords/xlat-unknown index 07c27deccb..43a1950dbe 100644 --- a/src/tests/keywords/xlat-unknown +++ b/src/tests/keywords/xlat-unknown @@ -6,11 +6,11 @@ update reply { } # -# This should be Vendor-Specific.WiMAX.Relase, so the +# This should be Vendor-Specific.WiMAX.Release, so the # reference here should be to an unknown attribute, # and the dereference should fail. # -if (&reply.WiMAX.Capability.Release == "foo") { # ERROR +if (&reply.Capability.Release == "foo") { # ERROR test_fail } else {