chgrp: correct the usage for non-desktop chgrp calls
authorLiu, Shuang (ADITG/ESM) <sliu@de.adit-jv.com>
Wed, 13 Nov 2019 14:36:20 +0000 (14:36 +0000)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 17 Nov 2019 16:06:31 +0000 (17:06 +0100)
commitaf6bc54fdefabae9ca433e515f7f1aa050184c9a
tree168514f97be1bf8be95c5b88add2868056944ddd
parentb230fdfa9da2f31e6cc90f90579c6d020c770f86
chgrp: correct the usage for non-desktop chgrp calls

When IF_DESKTOP is not defined, chown and chgrp only takes option -R -h,
However the usage output of chgrp is wrong:

$ ./busybox.nosuid chown
Usage: chown [-Rh]... USER[:[GRP]] FILE...

$ ./busybox.nosuid chgrp
Usage: chgrp [-RhLHP]... GROUP FILE...

$ ./busybox.nosuid chgrp -H group dummy
chgrp: invalid option -- 'H'
Usage: chgrp [-RhLHP]... GROUP FILE...

The chgrp is now a wrapper of chown, so the recognized options shall be the same.
This is introduced by 34425389e09353a8dacdd6b23a62553f699c544c

I would expect the correct behavior shall be the same as chown.
So suggest the below patch, the behavior shall be:

$ ./busybox.nosuid chgrp
Usage: chgrp [-Rh]... GROUP FILE...

Signed-off-by: Shuang Liu <sliu@de.adit-jv.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/chgrp.c