From: Alan T. DeKok Date: Tue, 15 Dec 2020 14:33:41 +0000 (-0500) Subject: "-=" is an allowed operator in the "users" file X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55c59b898a9c2cf7bf2fa71f04bd9860e0e05ab9;p=thirdparty%2Ffreeradius-server.git "-=" is an allowed operator in the "users" file --- diff --git a/src/lib/server/map.c b/src/lib/server/map.c index 5d247772f22..77f13ffb496 100644 --- a/src/lib/server/map.c +++ b/src/lib/server/map.c @@ -198,6 +198,7 @@ fr_table_num_sorted_t const map_assignment_op_table[] = { { L("!="), T_OP_NE }, { L("!~"), T_OP_REG_NE }, { L("+="), T_OP_ADD }, + { L("-="), T_OP_SUB }, { L(":="), T_OP_SET }, { L("<"), T_OP_LT }, { L("<="), T_OP_LE },