projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
266c5c6
)
src/plugin.c: Use the write-list in plugin_write.
author
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Fri, 21 Nov 2008 23:57:53 +0000
(
00:57
+0100)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Fri, 21 Nov 2008 23:57:53 +0000
(
00:57
+0100)
Not the flush-list, doh!
src/plugin.c
patch
|
blob
|
history
diff --git
a/src/plugin.c
b/src/plugin.c
index
b004336
..
f222e3a
100644
(file)
--- a/
src/plugin.c
+++ b/
src/plugin.c
@@
-705,7
+705,7
@@
int plugin_write (const char *plugin, /* {{{ */
int success = 0;
int failure = 0;
- le = llist_head (list_
flush
);
+ le = llist_head (list_
write
);
while (le != NULL)
{
callback = le->value;
@@
-725,7
+725,7
@@
int plugin_write (const char *plugin, /* {{{ */
}
else /* plugin != NULL */
{
- le = llist_head (list_
flush
);
+ le = llist_head (list_
write
);
while (le != NULL)
{
if (strcasecmp (plugin, le->key) == 0)