summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-10-03 20:39:54 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-10-03 20:39:54 +0000
commitcbf38e0d3db439168a6470cae5f39e7561a46f5a (patch)
tree0af33f6ec432a243cf3251e0b259f4d263c5d165 /include
parent784ed65222c4f8e8390c3103a8a02d5134e70d2a (diff)
put back FTS_CHDIRROOT until next library major number crank
Diffstat (limited to 'include')
-rw-r--r--include/fts.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fts.h b/include/fts.h
index 41f1ffc9ed0..fdb89c58c1e 100644
--- a/include/fts.h
+++ b/include/fts.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fts.h,v 1.4 1999/10/03 19:22:22 millert Exp $ */
+/* $OpenBSD: fts.h,v 1.5 1999/10/03 20:39:52 millert Exp $ */
/* $NetBSD: fts.h,v 1.5 1994/12/28 01:41:50 mycroft Exp $ */
/*
@@ -58,7 +58,8 @@ typedef struct {
#define FTS_SEEDOT 0x0020 /* return dot and dot-dot */
#define FTS_XDEV 0x0040 /* don't cross devices */
#define FTS_WHITEOUT 0x0080 /* return whiteout information */
-#define FTS_OPTIONMASK 0x00ff /* valid user option mask */
+#define FTS_CHDIRROOT 0x0100 /* chdir to root of tree not orig cwd */
+#define FTS_OPTIONMASK 0x0fff /* valid user option mask */
#define FTS_NAMEONLY 0x1000 /* (private) child names only */
#define FTS_STOP 0x2000 /* (private) unrecoverable error */