]> git.sur5r.net Git - bacula/bacula/commitdiff
Fixed Jmsg4 to Mmsg4
authorMarco van Wieringen <mvw@planets.elm.net>
Tue, 7 Jul 2009 15:35:44 +0000 (17:35 +0200)
committerMarco van Wieringen <mvw@planets.elm.net>
Sun, 9 Aug 2009 11:26:02 +0000 (13:26 +0200)
bacula/src/filed/xattr.c

index b878a4a0fe7a97620ec1c555ac9332edf8077ab3..4c52aa8106664b22f60af3a43bbfc6803f8a3b58 100644 (file)
@@ -1586,10 +1586,10 @@ static bsub_exit_code solaris_restore_xattrs(JCR *jcr, bool is_extensible)
 
          unlinkat(attrdirfd, target_attrname, 0);
          if (link(linked_target, target_attrname) < 0) {
-            Jmsg4(jcr, M_ERROR, 0, _("Unable to link xattr %s to %s on file \"%s\": ERR=%s\n"),
-               target_attrname, linked_target, jcr->last_fname, be.bstrerror());
+            Mmsg4(jcr->errmsg, _("Unable to link xattr %s to %s on file \"%s\": ERR=%s\n"),
+                  target_attrname, linked_target, jcr->last_fname, be.bstrerror());
             Dmsg4(100, "Unable to link xattr %s to %s on file \"%s\": ERR=%s\n",
-               target_attrname, linked_target, jcr->last_fname, be.bstrerror());
+                  target_attrname, linked_target, jcr->last_fname, be.bstrerror());
             goto cleanup;
          }
 
@@ -1665,10 +1665,10 @@ static bsub_exit_code solaris_restore_xattrs(JCR *jcr, bool is_extensible)
       linked_target = bp;
 
       if (symlink(linked_target, target_attrname) < 0) {
-         Jmsg4(jcr, M_ERROR, 0, _("Unable to symlink xattr %s to %s on file \"%s\": ERR=%s\n"),
-            target_attrname, linked_target, jcr->last_fname, be.bstrerror());
+         Mmsg4(jcr->errmsg, _("Unable to symlink xattr %s to %s on file \"%s\": ERR=%s\n"),
+               target_attrname, linked_target, jcr->last_fname, be.bstrerror());
          Dmsg4(100, "Unable to symlink xattr %s to %s on file \"%s\": ERR=%s\n",
-            target_attrname, linked_target, jcr->last_fname, be.bstrerror());
+               target_attrname, linked_target, jcr->last_fname, be.bstrerror());
          goto cleanup;
       }