diff options
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 50b983e24..2e3d50e9f 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -68,7 +68,7 @@ static int dirAction(const char *fileName) | |||
68 | exit(FALSE); | 68 | exit(FALSE); |
69 | } | 69 | } |
70 | while ((entry = readdir(dir)) != NULL) { | 70 | while ((entry = readdir(dir)) != NULL) { |
71 | recursiveAction( entry->d_name, recursiveFlag, dereferenceFlag, fileAction, dirAction); | 71 | recursiveAction( entry->d_name, recursiveFlag, dereferenceFlag, FALSE, fileAction, dirAction); |
72 | } | 72 | } |
73 | return( TRUE); | 73 | return( TRUE); |
74 | } | 74 | } |