btrfs-progs: use system attr instead of attr library

We use the attr version provided by system in other places already,
now we can remove dependency on the separate attr library.

Signed-off-by: David Sterba <dsterba@suse.cz>
master
David Sterba 2014-11-04 02:12:36 +01:00
parent 5bfc3fea81
commit 7560f46ea9
1 changed files with 7 additions and 1 deletions

View File

@ -17,7 +17,7 @@
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <attr/xattr.h>
#include <sys/xattr.h>
#include <fcntl.h>
#include <unistd.h>
@ -29,6 +29,12 @@
#define XATTR_BTRFS_PREFIX "btrfs."
#define XATTR_BTRFS_PREFIX_LEN (sizeof(XATTR_BTRFS_PREFIX) - 1)
/*
* Defined as synonyms in attr/xattr.h
*/
#ifndef ENOATTR
#define ENOATTR ENODATA
#endif
static int prop_read_only(enum prop_object_type type,
const char *object,