From: Alan T. DeKok Date: Wed, 1 Aug 2012 22:56:50 +0000 (-0700) Subject: Ignore regex comparisons, too X-Git-Tag: release_2_2_0~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c4b72540eeee38cb18f091ade581204c38aa1dd;p=thirdparty%2Ffreeradius-server.git Ignore regex comparisons, too --- diff --git a/src/lib/valuepair.c b/src/lib/valuepair.c index 82e327bd9a7..82cead0ce61 100644 --- a/src/lib/valuepair.c +++ b/src/lib/valuepair.c @@ -445,6 +445,8 @@ void pairmove(VALUE_PAIR **to, VALUE_PAIR **from) case T_OP_CMP_TRUE: case T_OP_CMP_FALSE: case T_OP_CMP_EQ: + case T_OP_REG_EQ: + case T_OP_REG_NE: tailfrom = i; continue;