From c7805816d01653547653e239c347e78f109c0af8 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Wed, 9 Feb 2022 16:02:30 -0500 Subject: [PATCH] add missing operator --- src/lib/unlang/xlat_expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/unlang/xlat_expr.c b/src/lib/unlang/xlat_expr.c index 5e034927ad..b33aaed8b1 100644 --- a/src/lib/unlang/xlat_expr.c +++ b/src/lib/unlang/xlat_expr.c @@ -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), -- 2.47.3