From: Alan T. DeKok Date: Wed, 1 Aug 2012 22:56:50 +0000 (-0700) Subject: Ignore regex comparisons, too X-Git-Tag: release_3_0_0_beta0~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a68109436bb47478c8b9e722c4fe30507ef788ed;p=thirdparty%2Ffreeradius-server.git Ignore regex comparisons, too --- diff --git a/src/lib/valuepair.c b/src/lib/valuepair.c index f67d5e8ff0a..965d107e599 100644 --- a/src/lib/valuepair.c +++ b/src/lib/valuepair.c @@ -466,6 +466,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;