Release Notes for Bacula 1.33
- Bacula code: Total files = 261 Total lines = 80,969 (*.h *.c *.in)
+ Bacula code: Total files = 271 Total lines = 82,422 (*.h *.c *.in)
Most Significant Changes since 1.32d
- Implement "update slots scan" that reads the volume label(s).
For 1.33
- Look at Dan's field width problems in PostgreSQL.
+- Look at effect of removing GROUP BYs.
- In restore take all filesets with same base name.
- From Alan Brown <ajb2@mssl.ucl.ac.uk>
BTW, there's a make install bug in 1.33 - with --enable-gnome,
char dt[MAX_TIME_LENGTH], b1[30], b2[30];
char level[10];
- if (last_jobs->size() == 0) {
+ if (last_jobs->empty()) {
bsendmsg(ua, _("No Terminated Jobs.\n"));
return;
}
goto get_out;
}
- dev->state &= ~ST_APPEND;
- dev->state |= ST_READ;
+ dev->state &= ~ST_APPEND; /* clear any previous append mode */
+ dev->state |= ST_READ; /* set reed mode */
attach_jcr_to_device(dev, jcr); /* attach jcr to device */
Jmsg(jcr, M_INFO, 0, _("Ready to read from volume \"%s\" on device %s.\n"),
jcr->VolumeName, dev_name(dev));