From: Marco van Wieringen Date: Sun, 28 Jun 2009 15:19:50 +0000 (+0000) Subject: Fix missing case for NetBSD xattr restores. X-Git-Tag: Release-3.0.2~139 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8da10a90de3bfe84c389f3f8198d3c06895dc37c;p=bacula%2Fbacula Fix missing case for NetBSD xattr restores. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8927 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/filed/restore.c b/bacula/src/filed/restore.c index b8435e132a..e85fcb770b 100644 --- a/bacula/src/filed/restore.c +++ b/bacula/src/filed/restore.c @@ -619,6 +619,7 @@ void do_restore(JCR *jcr) case STREAM_XATTR_DARWIN: case STREAM_XATTR_FREEBSD: case STREAM_XATTR_LINUX: + case STREAM_XATTR_NETBSD: /* * Do not restore Extended Attributes when * a) The current file is not extracted diff --git a/bacula/technotes b/bacula/technotes index 4051e0e798..614d84ff0f 100644 --- a/bacula/technotes +++ b/bacula/technotes @@ -2,6 +2,8 @@ General: +28Jun09 +mvw Fix missing case for NetBSD xattr restores. 27Jun09 kes Fix Win32 build -- turn off lockmgr and remove lockmgr defs 25Jun09