Code

Fix for config file parsing ("memcachec plugin: Option `Server' not allowed here.")
authorPascal Hofmann <mail@pascalhofmann.de>
Thu, 14 Jun 2012 19:54:47 +0000 (21:54 +0200)
committerFlorian Forster <octo@collectd.org>
Wed, 27 Jun 2012 19:18:44 +0000 (21:18 +0200)
src/memcachec.c

index d066501cdcba73afb56363dae167b9dd78353e10..73faa506fb5387572ff91e4a030c6fe9e0351b3d 100644 (file)
@@ -328,7 +328,7 @@ static int cmc_config_add_page (oconfig_item_t *ci) /* {{{ */
 
     if (strcasecmp ("Server", child->key) == 0)
       status = cmc_config_add_string ("Server", &page->server, child);
-    if (strcasecmp ("Key", child->key) == 0)
+    else if (strcasecmp ("Key", child->key) == 0)
       status = cmc_config_add_string ("Key", &page->key, child);
     else if (strcasecmp ("Match", child->key) == 0)
       /* Be liberal with failing matches => don't set `status'. */