From: Patrick Hemmer Date: Thu, 27 Jul 2023 15:39:09 +0000 (-0400) Subject: CLEANUP: acl: remove cache_idx from acl struct X-Git-Tag: v2.9-dev3~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=997a31dbdfe298347e6a0504e003c9f383033c57;p=thirdparty%2Fhaproxy.git CLEANUP: acl: remove cache_idx from acl struct It isn't used and never has been. --- diff --git a/include/haproxy/acl-t.h b/include/haproxy/acl-t.h index 5bae443c45..f832137b84 100644 --- a/include/haproxy/acl-t.h +++ b/include/haproxy/acl-t.h @@ -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_* */ };