From: Marco van Wieringen Date: Sat, 10 Oct 2009 09:13:43 +0000 (+0200) Subject: Removed last direct message output by replacing Qmsg by Mmsg X-Git-Tag: Release-5.0.0~285^2~1^2~4^2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=12029d0721609184f414ca60abe8ac23019bf7c9;p=bacula%2Fbacula Removed last direct message output by replacing Qmsg by Mmsg --- diff --git a/bacula/src/filed/xattr.c b/bacula/src/filed/xattr.c index 5ab5cfaf78..f726bea8f8 100644 --- a/bacula/src/filed/xattr.c +++ b/bacula/src/filed/xattr.c @@ -2251,9 +2251,7 @@ static bxattr_exit_code solaris_parse_xattr_streams(JCR *jcr, int stream) #if defined(HAVE_SYS_NVPAIR_H) && defined(_PC_SATTR_ENABLED) case STREAM_XATTR_SOLARIS_SYS: if (pathconf(jcr->last_fname, _PC_SATTR_ENABLED) <= 0) { - Qmsg1(jcr, M_WARNING, 0, - _("Failed to restore extensible attributes on file \"%s\"\n"), - jcr->last_fname); + Mmsg1(jcr->errmsg, _("Failed to restore extensible attributes on file \"%s\"\n"), jcr->last_fname); Dmsg1(100, "Unable to restore extensible attributes on file \"%s\", filesystem doesn't support this\n", jcr->last_fname); return bxattr_exit_error; @@ -2264,9 +2262,7 @@ static bxattr_exit_code solaris_parse_xattr_streams(JCR *jcr, int stream) #endif case STREAM_XATTR_SOLARIS: if (pathconf(jcr->last_fname, _PC_XATTR_ENABLED) <= 0) { - Qmsg1(jcr, M_WARNING, 0, - _("Failed to restore extended attributes on file \"%s\"\n"), - jcr->last_fname); + Mmsg1(jcr->errmsg, _("Failed to restore extended attributes on file \"%s\"\n"), jcr->last_fname); Dmsg1(100, "Unable to restore extended attributes on file \"%s\", filesystem doesn't support this\n", jcr->last_fname); return bxattr_exit_error;