src/filter_chain.c: Allow chains without a default target.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 16 Mar 2009 08:31:04 +0000 (09:31 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 16 Mar 2009 08:31:04 +0000 (09:31 +0100)
This is how it's documented.

src/filter_chain.c

index 9a52f7c..01688ee 100644 (file)
@@ -516,21 +516,6 @@ static int fc_config_add_chain (const oconfig_item_t *ci) /* {{{ */
       break;
   } /* for (ci->children) */
 
-  /* Additional sanity checking. */
-  while (status == 0)
-  {
-    if (chain->targets == NULL)
-    {
-      WARNING ("Filter subsystem: Chain %s: No default target has been "
-          "specified. Please make sure that there is a <Target> block within "
-          "the <Chain> block!", chain->name);
-      status = -1;
-      break;
-    }
-
-    break;
-  } /* while (status == 0) */
-
   if (status != 0)
   {
     fc_free_chains (chain);