CLEANUP: acl: remove cache_idx from acl struct

It isn't used and never has been.
This commit is contained in:
Patrick Hemmer 2023-07-27 11:39:09 -04:00 committed by Willy Tarreau
parent bdd863477d
commit 997a31dbdf

View 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_* */
};