commit | c61009525809a3ef78eb71050b81815786d2f0d9 | [log] [tgz] |
---|---|---|
author | Aurelien DARRAGON <adarragon@haproxy.com> | Thu May 11 12:29:51 2023 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Thu May 11 15:37:04 2023 +0200 |
tree | 772a15f9c19edd7fba249437128ecff3534087c3 | |
parent | cd9aff13214d26ddcccc0aef9494f3fbfdb5217b [diff] |
MINOR: tree-wide: use free_acl_cond() where relevant Now that we have free_acl_cond(cond) function that does cond prune then frees cond, replace all occurences of this pattern: | prune_acl_cond(cond) | free(cond) with: | free_acl_cond(cond)