From: Karel Zak Date: Wed, 22 Aug 2018 08:35:51 +0000 (+0200) Subject: setpriv: add user/group names to usage() X-Git-Tag: v2.33-rc1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99179a0a08ac97351db112e587b67b524b9eb12a;p=thirdparty%2Futil-linux.git setpriv: add user/group names to usage() Signed-off-by: Karel Zak --- diff --git a/sys-utils/setpriv.c b/sys-utils/setpriv.c index d93341b395..564c56d48f 100644 --- a/sys-utils/setpriv.c +++ b/sys-utils/setpriv.c @@ -129,12 +129,12 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" --ambient-caps set ambient capabilities\n"), out); fputs(_(" --inh-caps set inheritable capabilities\n"), out); fputs(_(" --bounding-set set capability bounding set\n"), out); - fputs(_(" --ruid set real uid\n"), out); - fputs(_(" --euid set effective uid\n"), out); - fputs(_(" --rgid set real gid\n"), out); - fputs(_(" --egid set effective gid\n"), out); - fputs(_(" --reuid set real and effective uid\n"), out); - fputs(_(" --regid set real and effective gid\n"), out); + fputs(_(" --ruid set real uid\n"), out); + fputs(_(" --euid set effective uid\n"), out); + fputs(_(" --rgid set real gid\n"), out); + fputs(_(" --egid set effective gid\n"), out); + fputs(_(" --reuid set real and effective uid\n"), out); + fputs(_(" --regid set real and effective gid\n"), out); fputs(_(" --clear-groups clear supplementary groups\n"), out); fputs(_(" --keep-groups keep supplementary groups\n"), out); fputs(_(" --init-groups initialize supplementary groups\n"), out);