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/chmod.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/chmod.c')
-rw-r--r-- | coreutils/chmod.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/chmod.c b/coreutils/chmod.c index b1d75129b..93b7f78cd 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c | |||
@@ -51,6 +51,7 @@ int chmod_main(int argc, char **argv) | |||
51 | switch (opt) { | 51 | switch (opt) { |
52 | case 'R': | 52 | case 'R': |
53 | recursiveFlag = TRUE; | 53 | recursiveFlag = TRUE; |
54 | break; | ||
54 | default: | 55 | default: |
55 | show_usage(); | 56 | show_usage(); |
56 | } | 57 | } |