aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chgrp.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-26 18:27:47 +0000
committerMatt Kraai <kraai@debian.org>2001-04-26 18:27:47 +0000
commit468f504fd79a590e632193fc0ecf999b86ae5cba (patch)
treedc8c600f648cdfad02c8556ef06a95679cfaf03f /coreutils/chgrp.c
parentc1bdffe99b6fa6fdb0f43e0dec85d8bbfcab1572 (diff)
downloadbusybox-468f504fd79a590e632193fc0ecf999b86ae5cba.tar.gz
Fix handling of -R flag.
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r--coreutils/chgrp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c
index 55e22f528..ec1a0370c 100644
--- a/coreutils/chgrp.c
+++ b/coreutils/chgrp.c
@@ -56,6 +56,7 @@ int chgrp_main(int argc, char **argv)
switch (opt) {
case 'R':
recursiveFlag = TRUE;
+ break;
default:
show_usage();
}