Changes of Revision 8
[-] | Changed | bacula.changes |
1
2 ------------------------------------------------------------------- 3 +Sat Sep 15 10:02:28 UTC 2012 - cs@linux-administrator.com 4 + 5 +- update to release 5.2.12 6 + 7 +------------------------------------------------------------------- 8 Wed Sep 12 17:41:41 UTC 2012 - cs@linux-administrator.com 9 10 - update to release 5.2.11 11 |
||
[-] | Changed | bacula.spec ^ |
34 1
2 # 3 -# spec file for package bacula (Version 5.2.11) 4 +# spec file for package bacula (Version 5.2.12) 5 # 6 # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. 7 # 8
9 10 # norootforbuild 11 12 -%define pkgversion 5.2.11 13 +%define pkgversion 5.2.12 14 15 Name: bacula 16 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services 17
18 BuildRequires: tcp_wrappers-devel 19 %endif 20 21 -%define _libver 5_2_10 22 -%define _sover 5.2.11 23 +%define _libver 5_2_12 24 +%define _sover 5.2.12 25 26 License: GPL v2 or later 27 Group: Productivity/Archiving/Backup 28 AutoReqProv: on 29 -Version: 5.2.11 30 +Version: 5.2.12 31 Release: 1 32 Summary: Bacula--The Network Backup Solution: Client Part 33 Url: http://www.bacula.org 34 |
||
[+] | Changed | bacula-5.2.12.tar.bz2/ChangeLog ^ |
@@ -1,4 +1,10 @@ - Changelog on version 5.2.11 + Changelog on version 5.2.12 + +Version 5.2.12 + +13Sep12 + - Fix accurate option in the estimate command + - Fix bug #1932 director crash. Version 5.2.11 | ||
[+] | Changed | bacula-5.2.12.tar.bz2/ReleaseNotes ^ |
@@ -1,11 +1,11 @@ - Release Notes for Bacula 5.2.11 + Release Notes for Bacula 5.2.12 Bacula code: Total files = 1,110 Total lines = 231,439 (Using SLOCCount) General: -------- -Version 5.2.11 version is a bug fix release. +Version 5.2.12 version is a bug fix release. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Please note that with this version of Bacula, during the install @@ -37,7 +37,7 @@ As always, both the Director and Storage daemon must be upgraded at the same time. - Older 5.0.x and 3.0.x File Daemons are compatible with the 5.2.11 + Older 5.0.x and 3.0.x File Daemons are compatible with the 5.2.12 Director and Storage daemons. There should be no need to upgrade older File Daemons. @@ -47,6 +47,10 @@ - Add chio-changer-openbsd submitted in bug #1903 - Important Copy job bug fixed. +12Sep12 + - Fix accurate option in the estimate command + - Fix bug #1932 director crash. + 10Sep12 - Add JobId to SD debug output - Commit batch session every 800,000 files @@ -74,7 +78,12 @@ Bugs fixed/closed since last release: 1823 1859 1901 1902 1903 1905 1906 1907 1911 1923 1925 4377 +1932 + + +======================================================= +Version 5.2.11 was short lived because of a crash ======================================================= | ||
[+] | Changed | bacula-5.2.12.tar.bz2/src/dird/ua_cmds.c ^ |
@@ -1144,9 +1144,14 @@ } } if (strcasecmp(ua->argk[i], NT_("accurate")) == 0) { - if (!is_yesno(ua->argv[i], &accurate)) { - ua->error_msg(_("Invalid value for accurate. " - "It must be yes or no.\n")); + if (ua->argv[i]) { + if (!is_yesno(ua->argv[i], &accurate)) { + ua->error_msg(_("Invalid value for accurate. " + "It must be yes or no.\n")); + } + continue; + } else { + ua->error_msg(_("Accurate value missing.\n")); } } } | ||
[+] | Changed | bacula-5.2.12.tar.bz2/src/lib/bsys.c ^ |
@@ -53,7 +53,7 @@ int safer_unlink(const char *pathname, const char *regx) { int rc; - regex_t preg1, pexc1; + regex_t preg1; char prbuf[500]; const int nmatch = 30; regmatch_t pmatch[nmatch]; @@ -83,7 +83,6 @@ rtn = EROFS; } regfree(&preg1); - regfree(&pexc1); return rtn; } | ||
[+] | Changed | bacula-5.2.12.tar.bz2/src/version.h ^ |
@@ -1,8 +1,8 @@ #undef VERSION -#define VERSION "5.2.11" -#define BDATE "10 September 2012" -#define LSMDATE "10Sep12" +#define VERSION "5.2.12" +#define BDATE "12 September 2012" +#define LSMDATE "12Sep12" #define PROG_COPYRIGHT "Copyright (C) %d-2012 Free Software Foundation Europe e.V.\n" #define BYEAR "2012" /* year for copyright messages in progs */ |