From: Marco van Wieringen Date: Sun, 11 Oct 2009 17:11:45 +0000 (+0200) Subject: Change acl and xattr errors from Qmsg to Jmsg X-Git-Tag: Release-5.0.0~285^2~1^2~4^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d0a648b5e7ae306203bb6220e7df3106ae3352e7;p=bacula%2Fbacula Change acl and xattr errors from Qmsg to Jmsg --- diff --git a/bacula/src/filed/restore.c b/bacula/src/filed/restore.c index d3b25c9a99..649862df4c 100644 --- a/bacula/src/filed/restore.c +++ b/bacula/src/filed/restore.c @@ -671,7 +671,7 @@ void do_restore(JCR *jcr) * print the error message set by the lower level routine in jcr->errmsg. */ if (jcr->acl_data->nr_errors < ACL_REPORT_ERR_MAX_PER_JOB) { - Qmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg); + Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg); } jcr->acl_data->nr_errors++; break; @@ -711,7 +711,7 @@ void do_restore(JCR *jcr) * print the error message set by the lower level routine in jcr->errmsg. */ if (jcr->xattr_data->nr_errors < XATTR_REPORT_ERR_MAX_PER_JOB) { - Qmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg); + Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg); } jcr->xattr_data->nr_errors++; break;