summaryrefslogtreecommitdiffstats
path: root/src/stat.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-19 15:14:09 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 15:50:45 -0400
commitc35d0c2ed5578b180e17c37588a047fd013cc619 (patch)
treeb2ffc5b1329c886ca25797c88faaaff0094439f2 /src/stat.c
parent48d91c62cd27c15fe0e928abf6d023d17e9c41f7 (diff)
downloadbfs-c35d0c2ed5578b180e17c37588a047fd013cc619.tar.xz
config: Check for struct stat::st_flags
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat.c b/src/stat.c
index a32dbaa..f5cf3fe 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -99,7 +99,7 @@ void bfs_stat_convert(struct bfs_stat *dest, const struct stat *src) {
dest->rdev = src->st_rdev;
dest->mask |= BFS_STAT_RDEV;
-#if BSD
+#if BFS_HAS_ST_FLAGS
dest->attrs = src->st_flags;
dest->mask |= BFS_STAT_ATTRS;
#endif