diff options
author | Brandon Philips <brandon@ifup.org> | 2010-01-22 14:55:20 -0800 |
---|---|---|
committer | Brandon Philips <brandon@ifup.org> | 2010-01-22 14:55:20 -0800 |
commit | be0671a9e2529c74020819e3c38101bc52c1a40d (patch) | |
tree | a25329293caabef49c72d23444e45a3620d06d9f /include | |
parent | 972b42a67393f762936e74d3ce929914181f5f28 (diff) | |
parent | 235cdd2af498d288f1af1142e7a23fbd16dff907 (diff) | |
download | attr-be0671a9e2529c74020819e3c38101bc52c1a40d.tar.gz |
Merge branch 'misc'
Diffstat (limited to 'include')
-rw-r--r-- | include/walk_tree.h | 9 |
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 |