summaryrefslogtreecommitdiffstats
path: root/src/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dir.h')
-rw-r--r--src/dir.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dir.h b/src/dir.h
index 7e0cbba..b11d454 100644
--- a/src/dir.h
+++ b/src/dir.h
@@ -90,8 +90,10 @@ void bfs_dir_arena(struct arena *arena);
* bfs_opendir() flags.
*/
enum bfs_dir_flags {
+ /** Include whiteouts in the results. */
+ BFS_DIR_WHITEOUTS = 1 << 0,
/** @internal Start of private flags. */
- BFS_DIR_PRIVATE = 1 << 0,
+ BFS_DIR_PRIVATE = 1 << 1,
};
/**