From: Florian Forster Date: Sun, 22 Jun 2008 21:24:53 +0000 (+0200) Subject: src/rrd_daemon.c: Set the CI_FLAGS_IN_QUEUE flag when queueing a CI. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=892a16c3f0d591cca3c17704713d4d03dca926a9;p=rrdtool.git src/rrd_daemon.c: Set the CI_FLAGS_IN_QUEUE flag when queueing a CI. --- diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index d446756..b72f62e 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -182,6 +182,8 @@ static int enqueue_cache_item (cache_item_t *ci) /* {{{ */ cache_queue_tail->next = ci; cache_queue_tail = ci; + ci->flags |= CI_FLAGS_IN_QUEUE; + return (0); } /* }}} int enqueue_cache_item */