]> git.sur5r.net Git - bacula/bacula/commitdiff
Change acl and xattr errors from Qmsg to Jmsg
authorMarco van Wieringen <mvw@planets.elm.net>
Sun, 11 Oct 2009 17:11:45 +0000 (19:11 +0200)
committerMarco van Wieringen <mvw@planets.elm.net>
Sun, 11 Oct 2009 17:11:45 +0000 (19:11 +0200)
bacula/src/filed/restore.c

index d3b25c9a99aedd5eb1d5b55de370ac6de51ef8a3..649862df4c87438454749760028ab260b88b8c26 100644 (file)
@@ -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;