diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-01-08 14:47:27 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-01-08 15:11:36 -0500 |
commit | 2215f7a5d902764755673cc15a317982f0f15592 (patch) | |
tree | c164da27ad2bfbaa3e45439abd5c3c623f348250 /fsade.h | |
parent | 82dd2eb052aea282de099c2a26fd36f94649a5ae (diff) | |
download | bfs-2215f7a5d902764755673cc15a317982f0f15592.tar.xz |
fsade: Support checking for xattrs (extattrs) on FreeBSD
Diffstat (limited to 'fsade.h')
-rw-r--r-- | fsade.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ # endif #endif -#define BFS_CAN_CHECK_XATTRS BFS_HAS_SYS_XATTR +#define BFS_CAN_CHECK_XATTRS (BFS_HAS_SYS_EXTATTR || BFS_HAS_SYS_XATTR) /** * Check if a file has a non-trvial Access Control List. |