summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2009-06-23 00:17:49 +0200
committerAndreas Gruenbacher <agruen@suse.de>2009-06-23 00:17:49 +0200
commit1a80c89ee88357137b598fa3357b576933c5746c (patch)
tree4cc970c0380ae3bdc8da52fa2d0c334c98146278 /include
parent6fab4d7598d0be4908e54d469171a1715e57cda2 (diff)
downloadacl-1a80c89ee88357137b598fa3357b576933c5746c.tar.gz
Introduce new WALK_TREE_DEREFERENCE_TOPLEVEL flag
This flag indicates to dereference top-level symlinks. (If non top-level symlinks should be stat()ed as well, the WALK_TREE_DEREFERENCE flag must be specified.)
Diffstat (limited to 'include')
-rw-r--r--include/walk_tree.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/walk_tree.h b/include/walk_tree.h
index 53a8fc5..9f1ec34 100644
--- a/include/walk_tree.h
+++ b/include/walk_tree.h
@@ -20,10 +20,11 @@
#ifndef __WALK_TREE_H
#define __WALK_TREE_H
-#define WALK_TREE_RECURSIVE 0x1
-#define WALK_TREE_PHYSICAL 0x2
-#define WALK_TREE_LOGICAL 0x4
-#define WALK_TREE_DEREFERENCE 0x8
+#define WALK_TREE_RECURSIVE 0x01
+#define WALK_TREE_PHYSICAL 0x02
+#define WALK_TREE_LOGICAL 0x04
+#define WALK_TREE_DEREFERENCE 0x08
+#define WALK_TREE_DEREFERENCE_TOPLEVEL 0x10
#define WALK_TREE_TOPLEVEL 0x100
#define WALK_TREE_SYMLINK 0x200