projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
927bc89
)
src/daemon/filter_chain.c: Fix "Dead assignment" warning.
author
Florian Forster
<octo@collectd.org>
Thu, 18 Jun 2015 07:16:18 +0000
(09:16 +0200)
committer
Florian Forster
<octo@collectd.org>
Thu, 18 Jun 2015 07:25:34 +0000
(09:25 +0200)
src/filter_chain.c
patch
|
blob
|
history
diff --git
a/src/filter_chain.c
b/src/filter_chain.c
index
5ad9655
..
c9be097
100644
(file)
--- 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);