src/filter_chain.c: Add `Target' blocks to `Chain' blocks.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sat, 22 Nov 2008 00:02:08 +0000 (01:02 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sat, 22 Nov 2008 00:02:08 +0000 (01:02 +0100)
I simply forgot them :/

src/filter_chain.c

index 9a15661..5784426 100644 (file)
@@ -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 "