From b109c99699c7fc68924354ffa937b111d5896d2d Mon Sep 17 00:00:00 2001 From: andersen Date: Mon, 18 Oct 1999 19:02:32 +0000 Subject: More fixes git-svn-id: svn://busybox.net/trunk/busybox@30 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ls.c') diff --git a/ls.c b/ls.c index 50b983e24..2e3d50e9f 100644 --- a/ls.c +++ b/ls.c @@ -68,7 +68,7 @@ static int dirAction(const char *fileName) exit(FALSE); } while ((entry = readdir(dir)) != NULL) { - recursiveAction( entry->d_name, recursiveFlag, dereferenceFlag, fileAction, dirAction); + recursiveAction( entry->d_name, recursiveFlag, dereferenceFlag, FALSE, fileAction, dirAction); } return( TRUE); } -- cgit v1.2.3-55-g6feb