aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-06 09:04:55 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-06 09:04:55 +0000
commit9d3aba7b37b275350a9fe0887871da9ba73dcbd7 (patch)
treeef6575073c089aaedbce47b63d13836552b4e556 /coreutils/chown.c
parentb09c6b5d4a204dc89bbab702509b148602027ecd (diff)
downloadbusybox-9d3aba7b37b275350a9fe0887871da9ba73dcbd7.tar.gz
more stuff
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 5c2ae0da6..5ac48f772 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -116,10 +116,7 @@ int chown_main(int argc, char **argv)
}
while (argc-- > 1) {
argv++;
- if (recursiveFlag==TRUE)
- recursiveAction( *argv, TRUE, fileAction, fileAction);
- else
- fileAction( *argv);
+ recursiveAction( *argv, recursiveFlag, TRUE, fileAction, fileAction);
}
return(TRUE);
}