From 2098d38aca721db2d77b918b22b1986a125295d2 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sat, 22 Nov 2008 01:02:08 +0100 Subject: [PATCH] src/filter_chain.c: Add `Target' blocks to `Chain' blocks. I simply forgot them :/ --- src/filter_chain.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/filter_chain.c b/src/filter_chain.c index 9a15661f..57844260 100644 --- a/src/filter_chain.c +++ b/src/filter_chain.c @@ -497,6 +497,8 @@ static int fc_config_add_chain (const oconfig_item_t *ci) /* {{{ */ if (strcasecmp ("Rule", option->key) == 0) status = fc_config_add_rule (chain, option); + else if (strcasecmp ("Target", option->key) == 0) + status = fc_config_add_target (&chain->targets, option); else { WARNING ("Filter subsystem: Chain %s: Option `%s' not allowed " -- 2.11.0