diff options
author | Matt Kraai <kraai@debian.org> | 2001-04-26 18:27:47 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-04-26 18:27:47 +0000 |
commit | 468f504fd79a590e632193fc0ecf999b86ae5cba (patch) | |
tree | dc8c600f648cdfad02c8556ef06a95679cfaf03f /coreutils/chgrp.c | |
parent | c1bdffe99b6fa6fdb0f43e0dec85d8bbfcab1572 (diff) | |
download | busybox-w32-468f504fd79a590e632193fc0ecf999b86ae5cba.tar.gz busybox-w32-468f504fd79a590e632193fc0ecf999b86ae5cba.tar.bz2 busybox-w32-468f504fd79a590e632193fc0ecf999b86ae5cba.zip |
Fix handling of -R flag.
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r-- | coreutils/chgrp.c | 1 |
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) | |||
56 | switch (opt) { | 56 | switch (opt) { |
57 | case 'R': | 57 | case 'R': |
58 | recursiveFlag = TRUE; | 58 | recursiveFlag = TRUE; |
59 | break; | ||
59 | default: | 60 | default: |
60 | show_usage(); | 61 | show_usage(); |
61 | } | 62 | } |