Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/coreutils/chown.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/chown.c

    r3232 r3621  
    1212
    1313//usage:#define chown_trivial_usage
    14 //usage:       "[-RhLHP"IF_DESKTOP("cvf")"]... OWNER[<.|:>[GROUP]] FILE..."
     14//usage:       "[-Rh"IF_DESKTOP("LHPcvf")"]... USER[:[GRP]] FILE..."
    1515//usage:#define chown_full_usage "\n\n"
    16 //usage:       "Change the owner and/or group of each FILE to OWNER and/or GROUP\n"
     16//usage:       "Change the owner and/or group of each FILE to USER and/or GRP\n"
    1717//usage:     "\n    -R  Recurse"
    1818//usage:     "\n    -h  Affect symlinks instead of symlink targets"
     19//usage:    IF_DESKTOP(
    1920//usage:     "\n    -L  Traverse all symlinks to directories"
    2021//usage:     "\n    -H  Traverse symlinks on command line only"
    2122//usage:     "\n    -P  Don't traverse symlinks (default)"
    22 //usage:    IF_DESKTOP(
    2323//usage:     "\n    -c  List changed files"
    2424//usage:     "\n    -v  List all files"
     
    113113    struct param_t param;
    114114
    115     /* Just -1 might not work: uid_t may be unsigned long */
    116     param.ugid.uid = -1L;
    117     param.ugid.gid = -1L;
    118 
    119115#if ENABLE_FEATURE_CHOWN_LONG_OPTIONS
    120116    applet_long_options = chown_longopts;
Note: See TracChangeset for help on using the changeset viewer.