summaryrefslogtreecommitdiffstats
path: root/bftw.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-02-14 13:01:17 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-02-14 13:01:17 -0500
commitc09c83d321417576eb6c7c3f6222e2ed05110c1c (patch)
tree15c37aecc5de5cf9311a86750d31a5804a2f2ef7 /bftw.h
parent4fdc29a88b9923d874375c72774a01a91a7fc253 (diff)
downloadbfs-c09c83d321417576eb6c7c3f6222e2ed05110c1c.tar.xz
Implement -mount/-xdev.
Diffstat (limited to 'bftw.h')
-rw-r--r--bftw.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/bftw.h b/bftw.h
index 790d422..0b692b0 100644
--- a/bftw.h
+++ b/bftw.h
@@ -120,6 +120,8 @@ enum bftw_flags {
BFTW_FOLLOW = BFTW_FOLLOW_ROOT | BFTW_FOLLOW_NONROOT,
/** Detect directory cycles. */
BFTW_DETECT_CYCLES = 1 << 5,
+ /** Stay on the same filesystem. */
+ BFTW_MOUNT = 1 << 6,
};
/**