mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: acl: export find_acl_default()
It will be needed in a future patch, so let's export it (it was static).
This commit is contained in:
parent
9539f2b097
commit
00fcda1ff2
2 changed files with 6 additions and 3 deletions
|
|
@ -50,6 +50,9 @@ static inline int acl_pass(enum acl_test_res res)
|
|||
* NULL if not found.
|
||||
*/
|
||||
struct acl *find_acl_by_name(const char *name, struct list *head);
|
||||
struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
|
||||
char **err, struct arg_list *al,
|
||||
const char *file, int line);
|
||||
|
||||
/* Return a pointer to the ACL keyword <kw> within the list starting at <head>,
|
||||
* or NULL if not found. Note that if <kw> contains an opening parenthesis,
|
||||
|
|
|
|||
|
|
@ -757,9 +757,9 @@ const struct {
|
|||
* to report missing dependencies. It may be NULL if such dependencies are not
|
||||
* allowed.
|
||||
*/
|
||||
static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
|
||||
char **err, struct arg_list *al,
|
||||
const char *file, int line)
|
||||
struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
|
||||
char **err, struct arg_list *al,
|
||||
const char *file, int line)
|
||||
{
|
||||
__label__ out_return, out_free_acl_expr, out_free_name;
|
||||
struct acl *cur_acl;
|
||||
|
|
|
|||
Loading…
Reference in a new issue