summaryrefslogtreecommitdiffstats
path: root/bftw.h
diff options
context:
space:
mode:
Diffstat (limited to 'bftw.h')
-rw-r--r--bftw.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/bftw.h b/bftw.h
index 573c5a9..06fdedb 100644
--- a/bftw.h
+++ b/bftw.h
@@ -184,8 +184,10 @@ enum bftw_flags {
BFTW_LOGICAL = 1 << 4,
/** Detect directory cycles. */
BFTW_DETECT_CYCLES = 1 << 5,
- /** Stay on the same filesystem. */
- BFTW_XDEV = 1 << 6,
+ /** Skip mount points and their descendents. */
+ BFTW_MOUNT = 1 << 6,
+ /** Skip the descendents of mount points. */
+ BFTW_XDEV = 1 << 7,
};
/**