summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 13e2b6e)
raw | patch | inline | side by side (parent: 13e2b6e)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 26 May 2015 13:41:47 +0000 (15:41 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 26 May 2015 13:41:47 +0000 (15:41 +0200) |
src/daemon/filter_chain.c | patch | blob | history | |
src/daemon/plugin.c | patch | blob | history | |
src/daemon/plugin.h | patch | blob | history |
index 32ce7367c8a3a11ac1647d04815c024b30fecc87..0fd4a73ee082d8a73f3e48fd710445705096f425 100644 (file)
"the `%s' plugin failed with status %i.",
plugin_list[i].plugin, status);
- plugin_log_available_writers ();
+ plugin_log_available_writers ();
}
else
{
diff --git a/src/daemon/plugin.c b/src/daemon/plugin.c
index b69e65b6a75b2413b6f777694fd9f73fb92ace12..3d364458bfb4c3a3e0def36300e9a76d23cf88ee 100644 (file)
--- a/src/daemon/plugin.c
+++ b/src/daemon/plugin.c
return (0);
} /* }}} int plugin_unregister_read */
-void plugin_log_available_writers ()
+void plugin_log_available_writers (void)
{
- log_list_callbacks (&list_write, "Available writers:");
+ log_list_callbacks (&list_write, "Available write targets:");
}
static int compare_read_func_group (llentry_t *e, void *ud) /* {{{ */
diff --git a/src/daemon/plugin.h b/src/daemon/plugin.h
index beeb576159fd9f3ce4647aeeabc7bf58ca0fae9d..70a22326e09f7b3f492877711e6b5152e5e369c8 100644 (file)
--- a/src/daemon/plugin.h
+++ b/src/daemon/plugin.h
* This function can be called to output a list of _all_ registered
* writers to the logfacility.
* Since some writers dynamically build their name it can be hard for
- * the configuring person to know it. This function will fill this gap.
+ * the configuring person to know it. This function will fill this gap.
*/
void plugin_log_available_writers ();