]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak technotes
authorKern Sibbald <kern@sibbald.com>
Thu, 18 Sep 2008 16:02:16 +0000 (16:02 +0000)
committerKern Sibbald <kern@sibbald.com>
Thu, 18 Sep 2008 16:02:16 +0000 (16:02 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7609 91ce42f0-d328-0410-95d8-f526ca767f89

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

index f6f8af8f988f381d66d64baf25894871c5df2f6f..88bcddab30ebf7aa58fac524ddc96aa0bf0751ea 100644 (file)
@@ -374,6 +374,9 @@ void load_fd_plugins(const char *plugin_dir)
    plugin_bread  = my_plugin_bread;
    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));
+   }
 
 }
 
index 24a77401a8659d579d7df1ead7448afcd48f4785..191f6fc965652bfa2d8c0aa4a5f45469e778eb3f 100644 (file)
@@ -151,7 +151,8 @@ typedef struct s_baculaInfo {
    uint32_t version;
 } bInfo;
 
-/* Bacula Core Routines -- not used by plugins */
+/* Bacula Core Routines -- not used within a plugin */
+#ifdef FILE_DAEMON
 struct BFILE;                   /* forward referenced */
 struct FF_PKT;
 void load_fd_plugins(const char *plugin_dir);
@@ -163,6 +164,7 @@ void plugin_name_stream(JCR *jcr, char *name);
 int plugin_create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace);
 bool plugin_set_attributes(JCR *jcr, ATTR *attr, BFILE *ofd);
 int plugin_save(JCR *jcr, FF_PKT *ff_pkt, bool top_level);
+#endif
 
 #ifdef __cplusplus
 extern "C" {
index 58a4e9c6a3f5af4a329c8b6b1f3ce9d04e56833c..9e376904385bc1fc63165c6aa0d5d643e51c10b8 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "2.5.3"
-#define BDATE   "16 September 2008"
-#define LSMDATE "16Sep08"
+#define BDATE   "18 September 2008"
+#define LSMDATE "18Sep08"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2008"       /* year for copyright messages in progs */
index 322e0f2cae13e0cd0f40059f1aac69fea97b8d94..bddefefa659a4ae1b9dcc4a12dfbcc2bf443f950 100644 (file)
@@ -18,6 +18,8 @@ dbdriver
 remove reader/writer in FOPTS????
 
 General:
+18Sep08
+kes  Fix bad debug code call in src/filed/accurate.c
 17Sep08
 kes  Change two Jmsgs in accurate to Dmsg to reduce unnecessary
      output. Perhaps we really need to implement M_SAVED.