mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-30 01:52:53 +00:00
CLEANUP: acl: don't reference the generic pattern deletion function anymore
A few ACL keyword used to reference pat_delete_gen() as the deletion function but this is not needed since it's the default one now. Let's just remove this reference.
This commit is contained in:
parent
e828d8f0e8
commit
b35aa9b256
@ -121,8 +121,8 @@ static struct acl_kw_list acl_kws = {ILH, {
|
||||
* and match method are related to the corresponding fetch methods. This
|
||||
* is very particular ACL declaration mode.
|
||||
*/
|
||||
{ "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_delete_gen, NULL, pat_match_auth },
|
||||
{ "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, pat_delete_gen, NULL, pat_match_meth },
|
||||
{ "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, NULL, NULL, pat_match_auth },
|
||||
{ "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, NULL, NULL, pat_match_meth },
|
||||
|
||||
{ "path", "path", PAT_MATCH_STR },
|
||||
{ "path_beg", "path", PAT_MATCH_BEG },
|
||||
|
Loading…
Reference in New Issue
Block a user