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;
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");
}
*/
#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 */
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.