diff options
author | Simon B <sburnet@hotmail.com> | 2012-05-06 15:03:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-05-06 15:03:32 +0200 |
commit | 3698ed1ca1a00c2460e3b167e4a243a4021c6f62 (patch) | |
tree | b62f44f251a74adfc848f6f263699403b44387ef /coreutils/mkdir.c | |
parent | 8c3439554aa6e9da90246955e00b69c690b52794 (diff) | |
download | busybox-w32-3698ed1ca1a00c2460e3b167e4a243a4021c6f62.tar.gz busybox-w32-3698ed1ca1a00c2460e3b167e4a243a4021c6f62.tar.bz2 busybox-w32-3698ed1ca1a00c2460e3b167e4a243a4021c6f62.zip |
mkdir,rmdir: accept and ignore -v, --verbose
function old new delta
static.rmdir_longopts 38 48 +10
mkdir_longopts 18 28 +10
Signed-off-by: Simon B <sburnet@hotmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index b33b6bba3..4a8e43e43 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -48,6 +48,7 @@ static const char mkdir_longopts[] ALIGN1 = | |||
48 | #if ENABLE_SELINUX | 48 | #if ENABLE_SELINUX |
49 | "context\0" Required_argument "Z" | 49 | "context\0" Required_argument "Z" |
50 | #endif | 50 | #endif |
51 | "verbose\0" No_argument "v" | ||
51 | ; | 52 | ; |
52 | #endif | 53 | #endif |
53 | 54 | ||
@@ -66,7 +67,7 @@ int mkdir_main(int argc UNUSED_PARAM, char **argv) | |||
66 | #if ENABLE_FEATURE_MKDIR_LONG_OPTIONS | 67 | #if ENABLE_FEATURE_MKDIR_LONG_OPTIONS |
67 | applet_long_options = mkdir_longopts; | 68 | applet_long_options = mkdir_longopts; |
68 | #endif | 69 | #endif |
69 | opt = getopt32(argv, "m:p" IF_SELINUX("Z:"), &smode IF_SELINUX(,&scontext)); | 70 | opt = getopt32(argv, "m:p" IF_SELINUX("Z:") "v", &smode IF_SELINUX(,&scontext)); |
70 | if (opt & 1) { | 71 | if (opt & 1) { |
71 | mode_t mmode = 0777; | 72 | mode_t mmode = 0777; |
72 | if (!bb_parse_mode(smode, &mmode)) { | 73 | if (!bb_parse_mode(smode, &mmode)) { |