From: Florian Forster Date: Wed, 29 Sep 2010 15:56:58 +0000 (+0200) Subject: src/utils_cache.c: Replace a left-over hard-coded default of "2" with "timeout_g". X-Git-Tag: collectd-4.10.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7ca6a64067a4e01a5e47044a6a80323d0138bee;p=thirdparty%2Fcollectd.git src/utils_cache.c: Replace a left-over hard-coded default of "2" with "timeout_g". --- diff --git a/src/utils_cache.c b/src/utils_cache.c index 69ea864b9..aeb662d55 100644 --- a/src/utils_cache.c +++ b/src/utils_cache.c @@ -175,7 +175,7 @@ static int uc_send_notification (const char *name) } /* Check if the entry has been updated in the meantime */ - if ((n.time - ce->last_update) < (2 * ce->interval)) + if ((n.time - ce->last_update) < (timeout_g * ce->interval)) { ce->state = STATE_OKAY; pthread_mutex_unlock (&cache_lock);