]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Allow integer64 in filtering "update" lists
authorAlan T. DeKok <aland@freeradius.org>
Tue, 9 Aug 2011 14:20:45 +0000 (10:20 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 9 Aug 2011 14:20:45 +0000 (10:20 -0400)
src/main/modcall.c

index a76a8ebd526fe313254f97024f48d333d699e0b9..6ab092c81a9b4b75640b3d9bb8533a1da1c52586 100644 (file)
@@ -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");