void load_fd_plugins(const char *plugin_dir)
{
+ Plugin *plugin;
+
if (!plugin_dir) {
return;
}
plugin_bwrite = my_plugin_bwrite;
plugin_blseek = my_plugin_blseek;
foreach_alist(plugin, plugin_list) {
- Jmsg(NULL, M_INFO, 0, _("Loaded plugin: %s\n", plugin->file));
+ Jmsg(NULL, M_INFO, 0, _("Loaded plugin: %s\n"), plugin->file);
}
}
remove reader/writer in FOPTS????
General:
+21Sep08
+kes Fix compile errors in filed/fd_plugin.c.
20Sep08
kes Remove all double quotes from SQLite creating script and
replace by single quotes as suggested by John Huttley.