}
}
- /* initialize stick-tables on backend capable proxies. This must not
- * be done earlier because the data size may be discovered while parsing
- * other proxies.
- */
- for (curproxy = proxy; curproxy; curproxy = curproxy->next) {
- if (curproxy->state == PR_STSTOPPED)
- continue;
-
- if (!stktable_init(&curproxy->table)) {
- Alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
- cfgerr++;
- }
- }
-
/*
* Recount currently required checks.
*/
}
}
+ /* initialize stick-tables on backend capable proxies. This must not
+ * be done earlier because the data size may be discovered while parsing
+ * other proxies.
+ */
+ for (curproxy = proxy; curproxy; curproxy = curproxy->next) {
+ if (curproxy->state == PR_STSTOPPED)
+ continue;
+
+ if (!stktable_init(&curproxy->table)) {
+ Alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
+ cfgerr++;
+ }
+ }
+
if (mailers) {
struct mailers *curmailers = mailers, **last;
struct mailer *m, *mb;