projects
/
rrdtool.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5db3db7
)
src/rrd_daemon.c: Don't return TRUE in `tree_callback_flush'.
author
Florian Forster
<octo@verplant.org>
Wed, 2 Jul 2008 20:20:13 +0000
(22:20 +0200)
committer
Florian Forster
<octo@verplant.org>
Wed, 2 Jul 2008 20:20:13 +0000
(22:20 +0200)
Returning TRUE will stop the traversal, so return FALSE instead.
src/rrd_daemon.c
patch
|
blob
|
history
diff --git
a/src/rrd_daemon.c
b/src/rrd_daemon.c
index
87ac8e9
..
feb1ce3
100644
(file)
--- a/
src/rrd_daemon.c
+++ b/
src/rrd_daemon.c
@@
-299,7
+299,7
@@
static gboolean tree_callback_flush (gpointer key /* {{{ */
&& (ci->values_num > 0))
enqueue_cache_item (ci, TAIL);
- return (
TRU
E);
+ return (
FALS
E);
} /* }}} gboolean tree_callback_flush */
static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */