summaryrefslogtreecommitdiff
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-w32-9d3aba7b37b275350a9fe0887871da9ba73dcbd7.tar.gz
busybox-w32-9d3aba7b37b275350a9fe0887871da9ba73dcbd7.tar.bz2
busybox-w32-9d3aba7b37b275350a9fe0887871da9ba73dcbd7.zip
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)
116 } 116 }
117 while (argc-- > 1) { 117 while (argc-- > 1) {
118 argv++; 118 argv++;
119 if (recursiveFlag==TRUE) 119 recursiveAction( *argv, recursiveFlag, TRUE, fileAction, fileAction);
120 recursiveAction( *argv, TRUE, fileAction, fileAction);
121 else
122 fileAction( *argv);
123 } 120 }
124 return(TRUE); 121 return(TRUE);
125} 122}