summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a770867)
raw | patch | inline | side by side (parent: a770867)
author | Florian Forster <octo@huhu.verplant.org> | |
Tue, 4 Aug 2009 10:13:41 +0000 (12:13 +0200) | ||
committer | Florian 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.
Version 4.6 and earlier are not effected.
src/network.c | patch | blob | history |
diff --git a/src/network.c b/src/network.c
index 0a74a1903cc4fc52ddbd0e1022c0ca8c2ebedf69..0e246c20eda53e5dd69ada996fd91522564d5baa 100644 (file)
--- a/src/network.c
+++ b/src/network.c
@@ -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 */