From 5886c74c397147a8a3211f48af244a82155d2255 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sun, 5 Jul 2009 17:17:40 +0200 Subject: [PATCH] Fixed typo where I moved some code into the switch. This version compiles on Linux --- bacula/src/filed/xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/filed/xattr.c b/bacula/src/filed/xattr.c index e64a4d3f9d..0e88059e73 100644 --- a/bacula/src/filed/xattr.c +++ b/bacula/src/filed/xattr.c @@ -502,11 +502,11 @@ static bsub_exit_code generic_xattr_parse_streams(JCR *jcr, int stream) * we try to restore the other extended attributes too. */ if (lsetxattr(jcr->last_fname, current_xattr.name, current_xattr.value, + current_xattr.value_length, 0) != 0) { switch (errno) { case ENOENT: break; default: - current_xattr.value_length, 0) != 0) { Jmsg2(jcr, M_ERROR, 0, _("lsetxattr error on file \"%s\": ERR=%s\n"), jcr->last_fname, be.bstrerror()); Dmsg2(100, "lsetxattr error file=%s ERR=%s\n", -- 2.39.5