[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)