- Release Notes for Bacula 2.0.1
+ Release Notes for Bacula 2.0.2
Bacula code: Total files = 438 Total lines = 154,329 (*.h *.c *.in)
-This is a bug fix release to version 2.0.0:
+This is a bug fix release to version 2.0.1:
+
+25Jan07
+kes Change 'Device not configured to autolabel' from INFO
+ to WARNING.
+kes Fix jobq.c to restart failed jobs when Reschedule Times = 0
+ which should restart an indefinite # of times.
+kes Fix configure --help to print --with-mysql[=DIR]. Same for
+ other DIR specifications.
+23Jan07
+rn Fix msvc build problems. Fix bacula.dll exports for msvc build.
+ Fix path quoting in SQLite scripts.
+ Fix problems with SHGetFolderPath.
+19Jan07
+kes Create patches/2.0.1-restart.patch. Fixes bug #755.
+18Jan07
+kes Fix Job restart on error bug that promotes an Inc to a Full
+ backup. This should fix bug #755.
+kes Add qt-console and first cut of code.
Version 2.0.1
12Jan07
int stat = sqlite3_open(db_name, &mdb->db);
if (stat != SQLITE_OK) {
mdb->sqlite_errmsg = (char *)sqlite3_errmsg(mdb->db);
+ sqlite3_close(mdb->db);
+ mdb->db = NULL;
} else {
mdb->sqlite_errmsg = NULL;
}
*/
#undef VERSION
-#define VERSION "2.0.1"
-#define BDATE "12 January 2007"
-#define LSMDATE "12Jan07"
+#define VERSION "2.0.2"
+#define BDATE "26 January 2007"
+#define LSMDATE "26Jan07"
#define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
#define BYEAR "2007" /* year for copyright messages in progs */
Technical notes on version 2.0
General:
+26Jan07
+kes Fix open of SQLite3 db where user does not have write permission
+ so that DIR does not crash. Fixes bug #761.
25Jan07
kes Change 'Device not configured to autolabel' from INFO
to WARNING.