set_jcr_job_status(jcr, JS_ErrorTerminated);
}
- if (jcr->acl_data->nr_errors > 0) {
+ if (have_acl && jcr->acl_data->nr_errors > 0) {
Jmsg(jcr, M_ERROR, 0, _("Encountered %ld acl errors while doing backup\n"),
jcr->acl_data->nr_errors);
}
- if (jcr->xattr_data->nr_errors > 0) {
+ if (have_xattr && jcr->xattr_data->nr_errors > 0) {
Jmsg(jcr, M_ERROR, 0, _("Encountered %ld xattr errors while doing backup\n"),
jcr->xattr_data->nr_errors);
}
*/
Dmsg2(10, "End Do Restore. Files=%d Bytes=%s\n", jcr->JobFiles,
edit_uint64(jcr->JobBytes, ec1));
- if (jcr->acl_data->nr_errors > 0) {
+ if (have_acl && jcr->acl_data->nr_errors > 0) {
Jmsg(jcr, M_ERROR, 0, _("Encountered %ld acl errors while doing restore\n"),
jcr->acl_data->nr_errors);
}
- if (jcr->xattr_data->nr_errors > 0) {
+ if (have_xattr && jcr->xattr_data->nr_errors > 0) {
Jmsg(jcr, M_ERROR, 0, _("Encountered %ld xattr errors while doing restore\n"),
jcr->xattr_data->nr_errors);
}
General:
+15Aug09
+ebl Fix couple of segfault with new ACL/XATTR code
13Aug09
ebl update lock manager to display file:line all the time
kes Make SD lock tracing work again. Has not worked for some time.