From 997a31dbdfe298347e6a0504e003c9f383033c57 Mon Sep 17 00:00:00 2001 From: Patrick Hemmer Date: Thu, 27 Jul 2023 11:39:09 -0400 Subject: [PATCH] CLEANUP: acl: remove cache_idx from acl struct It isn't used and never has been. --- include/haproxy/acl-t.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/haproxy/acl-t.h b/include/haproxy/acl-t.h index 5bae443c4..f832137b8 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_* */ };