network plugin: Fix an incorrectly used configuration variable.
authorFlorian Forster <octo@huhu.verplant.org>
Tue, 4 Aug 2009 10:13:41 +0000 (12:13 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Tue, 4 Aug 2009 10:13:41 +0000 (12:13 +0200)
The `CacheFlush' option was assigned to the `TTL' variable. Ouch.

Version 4.6 and earlier are not effected.

src/network.c

index 0a74a19..0e246c2 100644 (file)
@@ -2768,7 +2768,7 @@ static int network_config_set_cache_flush (const oconfig_item_t *ci) /* {{{ */
 
   tmp = (int) ci->values[0].value.number;
   if (tmp > 0)
-    network_config_ttl = tmp;
+    cache_flush_interval = tmp;
 
   return (0);
 } /* }}} int network_config_set_cache_flush */