summaryrefslogtreecommitdiff
path: root/bareos/xattr.patch
blob: c69a9a4df2a08d3a7c6cce94dcda375075c81576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
--- a/core/src/droplet/libdroplet/src/utils.c	2020-12-16 08:46:16.000000000 +0100
+++ b/core/src/droplet/libdroplet/src/utils.c	2021-01-09 21:28:43.099999815 +0100
@@ -33,7 +33,7 @@
  */
 #include <dropletp.h>
 #include <linux/xattr.h>
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 #include <errno.h>
 
 /** @file */
--- a/core/src/droplet/libdroplet/include/droplet/cdmi/crcmodel.h	2020-12-16 08:46:16.000000000 +0100
+++ b/core/src/droplet/libdroplet/include/droplet/cdmi/crcmodel.h	2021-01-09 21:50:10.506666487 +0100
@@ -79,7 +79,6 @@
 #ifndef DONE_STYLE
 
 typedef unsigned long ulong;
-typedef unsigned bool;
 typedef unsigned char* p_ubyte_;
 
 #  ifndef TRUE
@@ -107,8 +107,8 @@
   int cm_width;   /* Parameter: Width in bits [8,32].       */
   ulong cm_poly;  /* Parameter: The algorithm's polynomial. */
   ulong cm_init;  /* Parameter: Initial register value.     */
-  bool cm_refin;  /* Parameter: Reflect input bytes?        */
-  bool cm_refot;  /* Parameter: Reflect output CRC?         */
+  _Bool cm_refin; /* Parameter: Reflect input bytes?        */
+  _Bool cm_refot; /* Parameter: Reflect output CRC?         */
   ulong cm_xorot; /* Parameter: XOR this to output CRC.     */
 
   ulong cm_reg; /* Context: Context during execution.     */
--- a/core/src/droplet/libdroplet/src/backend/posix/reqbuilder.c	2020-12-16 08:46:16.000000000 +0100
+++ b/core/src/droplet/libdroplet/src/backend/posix/reqbuilder.c	2021-01-09 22:27:57.346666239 +0100
@@ -39,7 +39,7 @@
 #include <dirent.h>
 #include <sys/types.h>
 #include <linux/xattr.h>
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 #include <utime.h>
 #include <pwd.h>
 #include <grp.h>