From: Darrick J. Wong Date: Wed, 20 Feb 2019 17:20:05 +0000 (-0800) Subject: src/t_attr_corruption: fix xattr.h include problems X-Git-Tag: v2022.05.01~1247 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=23b1f2ccba1d6d7e7e61acac4ea8e8ab094d0c80;p=xfstests-dev.git 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 --- 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) {