diff options
Diffstat (limited to 'src/paxctl-ng.c')
-rw-r--r-- | src/paxctl-ng.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c index d340a43..25396d4 100644 --- a/src/paxctl-ng.c +++ b/src/paxctl-ng.c @@ -49,7 +49,10 @@ #endif #ifdef XTPAX - #include <attr/xattr.h> + #include <sys/xattr.h> + #ifndef ENOATTR + #define ENOATTR ENODATA + #endif #define PAX_NAMESPACE "user.pax.flags" #define CREATE_XT_FLAGS_SECURE 1 #define CREATE_XT_FLAGS_DEFAULT 2 |