summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-10-03 19:22:23 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-10-03 19:22:23 +0000
commit77e53bad3c551494891f8d12464b57eddc79664b (patch)
tree6a3dff7494a20707d995abc7bdfaca19642dc013 /include
parent1b165e9f2c3ac4fe5316adc1ee1b63e78a3fbd55 (diff)
kill FTS_CHDIRROOT flag, it is broken beyond repair and no longer used
Diffstat (limited to 'include')
-rw-r--r--include/fts.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/fts.h b/include/fts.h
index 9fbc028d75b..41f1ffc9ed0 100644
--- a/include/fts.h
+++ b/include/fts.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fts.h,v 1.3 1997/09/21 10:45:34 niklas Exp $ */
+/* $OpenBSD: fts.h,v 1.4 1999/10/03 19:22:22 millert Exp $ */
/* $NetBSD: fts.h,v 1.5 1994/12/28 01:41:50 mycroft Exp $ */
/*
@@ -58,8 +58,7 @@ 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_CHDIRROOT 0x0100 /* chdir to root of tree not orig cwd */
-#define FTS_OPTIONMASK 0x0fff /* valid user option mask */
+#define FTS_OPTIONMASK 0x00ff /* valid user option mask */
#define FTS_NAMEONLY 0x1000 /* (private) child names only */
#define FTS_STOP 0x2000 /* (private) unrecoverable error */