commit | a55b7dc52877ee81609db688f327e7e9586498f0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Jul 12 09:21:30 2009 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Jul 12 09:21:30 2009 +0200 |
tree | fc466bdd5b2fe66bc0de39ee5f8fd0de5e5a9fe2 | |
parent | bedb9bad6768babdbe7fea5f79c19a710321cc9b [diff] |
[BUG] default ACLs did not properly set the ->requires flag This bug caused session initialization not to always allocate the hdr_idx struct for default ACLs involving HTTP content.
diff --git a/src/acl.c b/src/acl.c index a5f0302..b26a527 100644 --- a/src/acl.c +++ b/src/acl.c
@@ -848,6 +848,7 @@ goto out_free_name; cur_acl->name = name; + cur_acl->requires |= acl_expr->kw->requires; LIST_INIT(&cur_acl->expr); LIST_ADDQ(&cur_acl->expr, &acl_expr->list); if (known_acl)