]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix compile errors in filed/fd_plugin.c.
authorKern Sibbald <kern@sibbald.com>
Sun, 21 Sep 2008 07:06:04 +0000 (07:06 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 21 Sep 2008 07:06:04 +0000 (07:06 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7616 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/filed/fd_plugins.c
bacula/technotes-2.5

index 88bcddab30ebf7aa58fac524ddc96aa0bf0751ea..d193027be19110969449961b2f20392b3d17e001 100644 (file)
@@ -361,6 +361,8 @@ bool plugin_set_attributes(JCR *jcr, ATTR *attr, BFILE *ofd)
 
 void load_fd_plugins(const char *plugin_dir)
 {
+   Plugin *plugin;
+
    if (!plugin_dir) {
       return;
    }
@@ -375,7 +377,7 @@ void load_fd_plugins(const char *plugin_dir)
    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);
    }
 
 }
index 689feb9cfa3c42e801d3920b0c92f8940ebe6be2..2f99b5093e4509d1820314dabfbf95fbceb6a7a0 100644 (file)
@@ -18,6 +18,8 @@ dbdriver
 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.