Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/coreutils/rm.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/coreutils/rm.c

    r3232 r3621  
    3939
    4040    opt_complementary = "f-i:i-f";
    41     /* -v (verbose) is ignored */
    4241    opt = getopt32(argv, "fiRrv");
    4342    argv += optind;
     
    4847    if (opt & (8|4))
    4948        flags |= FILEUTILS_RECUR;
     49    if ((opt & 16) && FILEUTILS_VERBOSE)
     50        flags |= FILEUTILS_VERBOSE;
    5051
    5152    if (*argv != NULL) {
Note: See TracChangeset for help on using the changeset viewer.