[-]
[+]
|
Changed |
bacula.changes
|
|
[-]
[+]
|
Changed |
bacula.spec
^
|
|
[-]
[+]
|
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 */
|