[MEDIUM] acl: set types on all currently known ACL verbs
All currently known ACL verbs have been assigned a type which makes
it possible to detect inconsistencies, such as response values used
in request rules.
diff --git a/src/acl.c b/src/acl.c
index ffed826..30c30de 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -1102,9 +1102,9 @@
/* Note: must not be declared <const> as its list will be overwritten */
static struct acl_kw_list acl_kws = {{ },{
- { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing },
- { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing },
- { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing },
+ { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing, ACL_USE_NOTHING },
+ { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing, ACL_USE_NOTHING },
+ { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing, ACL_USE_NOTHING },
#if 0
{ "time", acl_parse_time, acl_fetch_time, acl_match_time },
#endif