summaryrefslogtreecommitdiffstats
path: root/patches/ecryptfs-utils_111/0001-use-sys-xattr.h-instead-of-attr-xattr.h.patch
blob: cdedda3b4fa4ece257b322fcdf3495995ce2940e (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
From: Michael Olbrich <m.olbrich@pengutronix.de>
Date: Wed, 18 Sep 2019 07:46:17 +0200
Subject: [PATCH] use sys/xattr.h instead of attr/xattr.h

attr/xattr.h is gone in the latest attr version and sys/xattr.h provides
the same functionality.

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 tests/kernel/lp-509180/test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kernel/lp-509180/test.c b/tests/kernel/lp-509180/test.c
index 60cd0170f7f9..171f7a50d446 100644
--- a/tests/kernel/lp-509180/test.c
+++ b/tests/kernel/lp-509180/test.c
@@ -26,7 +26,7 @@
 #include <fcntl.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 
 #define TEST_ERROR	(2)