Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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);
}