ls: warning fix
rm: accept and ignore -v (verbose)
This commit is contained in:
@ -742,7 +742,7 @@ static int print_name(const char *name)
|
|||||||
static int list_single(const struct dnode *dn)
|
static int list_single(const struct dnode *dn)
|
||||||
{
|
{
|
||||||
int column = 0;
|
int column = 0;
|
||||||
char *lpath;
|
char *lpath = lpath; /* for compiler */
|
||||||
#if ENABLE_FEATURE_LS_TIMESTAMPS
|
#if ENABLE_FEATURE_LS_TIMESTAMPS
|
||||||
char *filetime;
|
char *filetime;
|
||||||
time_t ttime, age;
|
time_t ttime, age;
|
||||||
|
@ -27,13 +27,14 @@ int rm_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
unsigned opt;
|
unsigned opt;
|
||||||
|
|
||||||
opt_complementary = "f-i:i-f";
|
opt_complementary = "f-i:i-f";
|
||||||
opt = getopt32(argv, "fiRr");
|
/* -v (verbose) is ignored */
|
||||||
|
opt = getopt32(argv, "fiRrv");
|
||||||
argv += optind;
|
argv += optind;
|
||||||
if (opt & 1)
|
if (opt & 1)
|
||||||
flags |= FILEUTILS_FORCE;
|
flags |= FILEUTILS_FORCE;
|
||||||
if (opt & 2)
|
if (opt & 2)
|
||||||
flags |= FILEUTILS_INTERACTIVE;
|
flags |= FILEUTILS_INTERACTIVE;
|
||||||
if (opt & 12)
|
if (opt & (8|4))
|
||||||
flags |= FILEUTILS_RECUR;
|
flags |= FILEUTILS_RECUR;
|
||||||
|
|
||||||
if (*argv != NULL) {
|
if (*argv != NULL) {
|
||||||
|
Reference in New Issue
Block a user