tcp-request connection had an inverted condition on action_ptr, resulting
in no registered actions to be usable since commit
4214873 ("MEDIUM: actions:
remove ACTION_STOP") merged in 1.6-dev5. Very few new actions were impacted.
No backport is needed.
}
else {
/* Custom keywords. */
- if (rule->action_ptr)
+ if (!rule->action_ptr)
break;
switch (rule->action_ptr(rule, sess->fe, sess, NULL, ACT_FLAG_FINAL | ACT_FLAG_FIRST)) {
case ACT_RET_YIELD: