summaryrefslogtreecommitdiffstats
path: root/include/libbb.h
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-08-22 12:53:00 +0800
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-09-05 03:22:14 +0800
commitf7edad7cbf4560902083df5ecc912b2d3f91ba28 (patch)
tree59378467afda20c119940d89b6e5d2c2db3ea3e2 /include/libbb.h
parentdccdc2ed8889a791bb5f8151286975ad8a94ec1f (diff)
downloadbarebox-f7edad7cbf4560902083df5ecc912b2d3f91ba28.tar.gz
barebox-f7edad7cbf4560902083df5ecc912b2d3f91ba28.tar.xz
recursive_action: add ACTION_FOLLOWLINKS support
this is need to support symlink in envfs Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 110e8ec39d..47b2e08296 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -14,7 +14,7 @@ char* last_char_is(const char *s, int c);
enum {
ACTION_RECURSE = (1 << 0),
- /* ACTION_FOLLOWLINKS = (1 << 1), - unused */
+ ACTION_FOLLOWLINKS = (1 << 1),
ACTION_DEPTHFIRST = (1 << 2),
/*ACTION_REVERSE = (1 << 3), - unused */
};