From: Paul Querna Date: Fri, 5 Dec 2008 09:12:09 +0000 (+0000) Subject: D'oh. Fix r723672 and use the correct define. X-Git-Tag: 2.3.0~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=609f1d7aeb0c38ebc62731ff7532c68de1d172b2;p=apache D'oh. Fix r723672 and use the correct define. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723673 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cluster/mod_heartmonitor.c b/modules/cluster/mod_heartmonitor.c index cd07de6a8e..588e393c59 100644 --- a/modules/cluster/mod_heartmonitor.c +++ b/modules/cluster/mod_heartmonitor.c @@ -329,7 +329,7 @@ static void *hm_worker(apr_thread_t *thd, void *data) now = apr_time_now(); - if (apr_time_sec((now - last)) > HN_UPDATE_SECONDS) { + if (apr_time_sec((now - last)) > HN_UPDATE_SEC) { hm_update_stats(ctx, p); apr_pool_clear(p); last = now;