]> git.sur5r.net Git - bacula/bacula/commitdiff
Temp fix to plugin name file_index.
authorKern Sibbald <kern@sibbald.com>
Thu, 14 Feb 2008 13:22:35 +0000 (13:22 +0000)
committerKern Sibbald <kern@sibbald.com>
Thu, 14 Feb 2008 13:22:35 +0000 (13:22 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6419 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/filed/fd-plugins.c
bacula/src/version.h
bacula/technotes-2.3

index 961ff3db4a06d1395746f21e083a96cb561c6eb7..8df62d1906c3f9e9b1eb6b263b3ff75e84e9d05a 100644 (file)
@@ -207,7 +207,7 @@ bool send_plugin_name(JCR *jcr, BSOCK *sd, bool start)
    struct save_pkt *sp = (struct save_pkt *)jcr->plugin_sp;
   
    Dmsg1(000, "send_plugin_name=%s\n", sp->cmd);
-   if (!sd->fsend("%ld %d 0", jcr->JobFiles, STREAM_PLUGIN_NAME)) {
+   if (!sd->fsend("%ld %d 0", jcr->JobFiles+1, STREAM_PLUGIN_NAME)) {
      Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
            sd->bstrerror());
      return false;
@@ -215,7 +215,7 @@ bool send_plugin_name(JCR *jcr, BSOCK *sd, bool start)
    Dmsg1(000, "send: %s\n", sd->msg);
 
    if (start) {
-      stat = sd->fsend("%ld 1 %d %s%c", jcr->JobFiles, sp->portable, sp->cmd, 0);
+      stat = sd->fsend("%ld 1 %d %s%c", jcr->JobFiles+1, sp->portable, sp->cmd, 0);
    } else {
       stat = sd->fsend("%ld 0");
    }
index 48b3fedd8c6c7582f33019d7f8c071e4c05301c3..0d9c0aa918ddeb55216121731d5d0e8662212a88 100644 (file)
@@ -3,9 +3,9 @@
  */
 
 #undef  VERSION
-#define VERSION "2.3.9"
-#define BDATE   "10 February 2008"
-#define LSMDATE "10Feb08"
+#define VERSION "2.3.10"
+#define BDATE   "14 February 2008"
+#define LSMDATE "14Feb08"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2008"       /* year for copyright messages in progs */
index 25d3d7013757864878d94081efcdda7ce5edc6e3..1f137286c4ca665664ccefd9c6c842912da035d7 100644 (file)
@@ -1,6 +1,9 @@
               Technical notes on version 2.3
 
 General:
+14Feb08
+kes  Temp fix to plugin name file_index.
+kes  Bacula backed up and restored a MySQL database.
 13Feb08
 kes  Implement plugin restore.
 kes  Implement parsing of db_driver to give db_type index.