sysutils/bacula13-server: Adding missing patch

This patch was overlooked in the previous commit.

This fixes the fallout reports:

bxattr_freebsd.c:106:18: error: use of undeclared identifier 'bRC_XACL_ok'; did you mean 'bRC_BXATTR_ok'?
This commit is contained in:
Dan Langille 2023-11-25 12:58:39 +00:00
parent 5fd37d8d11
commit 22bc159ab8

View file

@ -0,0 +1,11 @@
--- src/filed/bxattr_freebsd.c.orig 2023-10-18 20:41:39 UTC
+++ src/filed/bxattr_freebsd.c
@@ -103,7 +103,7 @@ bRC_BXATTR BXATTR_FreeBSD::os_backup_xattr (JCR *jcr,
case bRC_BXATTR_skip:
case bRC_BXATTR_cont:
/* no xattr available, so skip rest of it */
- rc = bRC_XACL_ok;
+ rc = bRC_BXATTR_ok;
continue;
default:
goto bail_out;