From d0a648b5e7ae306203bb6220e7df3106ae3352e7 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sun, 11 Oct 2009 19:11:45 +0200 Subject: [PATCH] Change acl and xattr errors from Qmsg to Jmsg --- bacula/src/filed/restore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5