diff options
author | Denis Vlasenko | 2006-10-27 23:42:25 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-27 23:42:25 +0000 |
commit | 8c35d65c43216bb840326ac7476a180e2ae36fe9 (patch) | |
tree | 13d20b31e817dcff5124498ca0bec2cdf9781014 /findutils/find.c | |
parent | e80e2a3660bf09cc549cb2dfd2bdeb77ccde1231 (diff) | |
download | busybox-8c35d65c43216bb840326ac7476a180e2ae36fe9.zip busybox-8c35d65c43216bb840326ac7476a180e2ae36fe9.tar.gz |
recursive_action: add depth param
chmod: match coreutils versus following links
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/findutils/find.c b/findutils/find.c index 62cb5d7..8618f3a 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -56,7 +56,7 @@ static int num_matches; static int exec_opt; #endif -static int fileAction(const char *fileName, struct stat *statbuf, void* junk) +static int fileAction(const char *fileName, struct stat *statbuf, void* junk, int depth) { #ifdef CONFIG_FEATURE_FIND_XDEV if (S_ISDIR(statbuf->st_mode) && xdev_count) { @@ -307,12 +307,12 @@ int find_main(int argc, char **argv) if (firstopt == 1) { if (!recursive_action(".", TRUE, dereference, FALSE, fileAction, - fileAction, NULL)) + fileAction, NULL, 0)) status = EXIT_FAILURE; } else { for (i = 1; i < firstopt; i++) { if (!recursive_action(argv[i], TRUE, dereference, FALSE, fileAction, - fileAction, NULL)) + fileAction, NULL, 0)) status = EXIT_FAILURE; } } |