]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add missing operator
authorAlan T. DeKok <aland@freeradius.org>
Wed, 9 Feb 2022 21:02:30 +0000 (16:02 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 9 Feb 2022 21:02:30 +0000 (16:02 -0500)
src/lib/unlang/xlat_expr.c

index 5e034927ad5a8e5008463f77fe69c1023ceb73b6..b33aaed8b14439fb1e2319baa2b4019a01357278 100644 (file)
@@ -738,7 +738,7 @@ static const int precedence[T_TOKEN_LAST] = {
        [T_LAND]        = P(2,1),
 
        [T_OR]          = P(3,0),
-       // ^ (3,1)
+       [T_XOR]         = P(3,1),
        [T_AND]         = P(3,2),
 
        [T_OP_CMP_EQ]   = P(4,0),