diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-08-28 15:50:09 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-08-28 15:50:09 +0200 |
commit | 34cc6c91a286411a8275d9d61aa80397fe1e5fa3 (patch) | |
tree | 2808db0f61e5e63dc390330c98ce5acd7cefea9a /findutils/grep.c | |
parent | 6ff055115798166e172039284448be758b04e195 (diff) | |
download | busybox-w32-34cc6c91a286411a8275d9d61aa80397fe1e5fa3.tar.gz busybox-w32-34cc6c91a286411a8275d9d61aa80397fe1e5fa3.tar.bz2 busybox-w32-34cc6c91a286411a8275d9d61aa80397fe1e5fa3.zip |
grep: fix "grep -r PATTRN SYMLINK_TO_DIR"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/grep.c')
-rw-r--r-- | findutils/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index f1b6dc694..b9621384e 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -668,7 +668,7 @@ static int grep_dir(const char *dir) | |||
668 | int matched = 0; | 668 | int matched = 0; |
669 | recursive_action(dir, | 669 | recursive_action(dir, |
670 | /* recurse=yes */ ACTION_RECURSE | | 670 | /* recurse=yes */ ACTION_RECURSE | |
671 | /* followLinks=no */ | 671 | /* followLinks=command line only */ ACTION_FOLLOWLINKS_L0 | |
672 | /* depthFirst=yes */ ACTION_DEPTHFIRST, | 672 | /* depthFirst=yes */ ACTION_DEPTHFIRST, |
673 | /* fileAction= */ file_action_grep, | 673 | /* fileAction= */ file_action_grep, |
674 | /* dirAction= */ NULL, | 674 | /* dirAction= */ NULL, |