diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-27 17:22:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-27 17:22:00 +0000 |
commit | 4d3a812b71d1933860b268dbea15ffcea396e394 (patch) | |
tree | f995e85877501dd84f4fbb52c7e23dbea3bcf2cd /coreutils/rm.c | |
parent | 3603cd2808b3025460f2ad920d4622ed17194a32 (diff) |
ls: warning fix
rm: accept and ignore -v (verbose)
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r-- | coreutils/rm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c index 975f2267b..6b3fbcf25 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -27,13 +27,14 @@ int rm_main(int argc UNUSED_PARAM, char **argv) unsigned opt; opt_complementary = "f-i:i-f"; - opt = getopt32(argv, "fiRr"); + /* -v (verbose) is ignored */ + opt = getopt32(argv, "fiRrv"); argv += optind; if (opt & 1) flags |= FILEUTILS_FORCE; if (opt & 2) flags |= FILEUTILS_INTERACTIVE; - if (opt & 12) + if (opt & (8|4)) flags |= FILEUTILS_RECUR; if (*argv != NULL) { |