diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-18 19:02:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-18 19:02:32 +0000 |
commit | bed30e97005aca748a44806399c646633038daa8 (patch) | |
tree | cdba32234f059656b0279b324ae28c742692cd0c /ls.c | |
parent | 9b5871888989b16f94cbba5dd304ac444def3afd (diff) | |
download | busybox-w32-bed30e97005aca748a44806399c646633038daa8.tar.gz busybox-w32-bed30e97005aca748a44806399c646633038daa8.tar.bz2 busybox-w32-bed30e97005aca748a44806399c646633038daa8.zip |
More fixes
Diffstat (limited to 'ls.c')
-rw-r--r-- | ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | } |