From 23b1f2ccba1d6d7e7e61acac4ea8e8ab094d0c80 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Wed, 20 Feb 2019 09:20:05 -0800 Subject: [PATCH] src/t_attr_corruption: fix xattr.h include problems Apparently newer versions of libattr (which haven't yet been picked up by Debian or Ubuntu) don't ship xattr.h anymore, because we're supposed to use the libc version in sys/xattr.h. So do that. Signed-off-by: Darrick J. Wong Reviewed-by: David Sterba Signed-off-by: Eryu Guan --- src/t_attr_corruption.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_attr_corruption.c b/src/t_attr_corruption.c index 1fa5e41f..f26611f9 100644 --- a/src/t_attr_corruption.c +++ b/src/t_attr_corruption.c @@ -27,7 +27,7 @@ #include #include #include -#include +#include void die(const char *msg) { -- 2.39.5