From: Alan T. DeKok Date: Wed, 9 Feb 2022 21:02:30 +0000 (-0500) Subject: add missing operator X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7805816d01653547653e239c347e78f109c0af8;p=thirdparty%2Ffreeradius-server.git add missing operator --- diff --git a/src/lib/unlang/xlat_expr.c b/src/lib/unlang/xlat_expr.c index 5e034927ad5..b33aaed8b14 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),