diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-17 11:55:19 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-17 12:33:39 -0400 |
commit | 68949cf1b9cb5336ea06ad7f87db8e28b620f2ac (patch) | |
tree | b481fbc43d98d5e3606dd8646440ce0ae0f09b9f /src/eval.c | |
parent | 332f38aff0e6b7bc1a3a648eb66437d2d043ad21 (diff) | |
download | bfs-68949cf1b9cb5336ea06ad7f87db8e28b620f2ac.tar.xz |
bftw: New flag to control whiteout visibility
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1572,6 +1572,7 @@ static void dump_bftw_flags(enum bftw_flags flags) { DEBUG_FLAG(flags, BFTW_PRUNE_MOUNTS); DEBUG_FLAG(flags, BFTW_SORT); DEBUG_FLAG(flags, BFTW_BUFFER); + DEBUG_FLAG(flags, BFTW_WHITEOUTS); bfs_assert(flags == 0, "Missing bftw flag 0x%X", flags); } |