From: Alan T. DeKok Date: Tue, 9 Aug 2011 14:20:45 +0000 (-0400) Subject: Allow integer64 in filtering "update" lists X-Git-Tag: release_3_0_0_beta0~687 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26036e9425cde3bddde16862ecbc070fc12ccd3e;p=thirdparty%2Ffreeradius-server.git Allow integer64 in filtering "update" lists --- diff --git a/src/main/modcall.c b/src/main/modcall.c index a76a8ebd526..6ab092c81a9 100644 --- a/src/main/modcall.c +++ b/src/main/modcall.c @@ -1498,7 +1498,8 @@ static modcallable *do_compile_modupdate(modcallable *parent, (vp->operator == T_OP_GE)) { if ((vp->type != PW_TYPE_BYTE) && (vp->type != PW_TYPE_SHORT) && - (vp->type != PW_TYPE_INTEGER)) { + (vp->type != PW_TYPE_INTEGER) && + (vp->type != PW_TYPE_INTEGER64)) { pairfree(&head); pairfree(&vp); cf_log_err(ci, "Enforcment of <= or >= is possible only for integer attributes");