]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: acl: remove cache_idx from acl struct
authorPatrick Hemmer <patrick.hemmer@gmail.com>
Thu, 27 Jul 2023 15:39:09 +0000 (11:39 -0400)
committerWilly Tarreau <w@1wt.eu>
Tue, 1 Aug 2023 08:48:05 +0000 (10:48 +0200)
It isn't used and never has been.

include/haproxy/acl-t.h

index 5bae443c45db91dcbd9eb792d62e353586c5ca31..f832137b84be87ac64ed4049476e702f0a047987 100644 (file)
@@ -118,7 +118,6 @@ struct acl {
        struct list list;           /* chaining */
        char *name;                 /* acl name */
        struct list expr;           /* list of acl_exprs */
-       int cache_idx;              /* ACL index in cache */
        unsigned int use;           /* or'ed bit mask of all acl_expr's SMP_USE_* */
        unsigned int val;           /* or'ed bit mask of all acl_expr's SMP_VAL_* */
 };