From 82f9325762d2d7ca63d1d3560bf8b5dc850e9214 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Thu, 18 Jun 2015 09:16:18 +0200 Subject: [PATCH] src/daemon/filter_chain.c: Fix "Dead assignment" warning. --- src/filter_chain.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/filter_chain.c b/src/filter_chain.c index 5ad9655c..c9be097a 100644 --- a/src/filter_chain.c +++ b/src/filter_chain.c @@ -387,7 +387,6 @@ static int fc_config_add_rule (fc_chain_t *chain, /* {{{ */ for (i = 0; i < ci->children_num; i++) { oconfig_item_t *option = ci->children + i; - status = 0; if (strcasecmp ("Match", option->key) == 0) status = fc_config_add_match (&rule->matches, option); @@ -471,7 +470,6 @@ static int fc_config_add_chain (const oconfig_item_t *ci) /* {{{ */ for (i = 0; i < ci->children_num; i++) { oconfig_item_t *option = ci->children + i; - status = 0; if (strcasecmp ("Rule", option->key) == 0) status = fc_config_add_rule (chain, option); -- 2.11.0