aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-12-16 01:19:08 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-12-16 01:19:08 +0100
commitcaba1a16ec4a883376d53e5921917bb8485b5f49 (patch)
tree468e4b9f60a71027f60cc38815777d74fdb1c640 /loginutils
parent9b44deac01d61929a734a3ee4f739e95b024bfec (diff)
downloadbusybox-caba1a16ec4a883376d53e5921917bb8485b5f49.tar.gz
tweak help texts
function old new delta packed_usage 33650 33605 -45 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/chpasswd.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c
index 4e70b2557..a032abbed 100644
--- a/loginutils/chpasswd.c
+++ b/loginutils/chpasswd.c
@@ -24,21 +24,13 @@
//kbuild:lib-$(CONFIG_CHPASSWD) += chpasswd.o
//usage:#define chpasswd_trivial_usage
-//usage: IF_LONG_OPTS("[--md5|--encrypted|--crypt-method|--root]") IF_NOT_LONG_OPTS("[-m|-e|-c|-R]")
+//usage: "[-me] [-c ALG] [-R DIR]"
//usage:#define chpasswd_full_usage "\n\n"
//usage: "Read user:password from stdin and update /etc/passwd\n"
-//usage: IF_LONG_OPTS(
-//usage: "\n -e,--encrypted Supplied passwords are in encrypted form"
-//usage: "\n -m,--md5 Encrypt using md5, not des"
-//usage: "\n -c,--crypt-method ALG "CRYPT_METHODS_HELP_STR
-//usage: "\n -R,--root DIR Directory to chroot into"
-//usage: )
-//usage: IF_NOT_LONG_OPTS(
//usage: "\n -e Supplied passwords are in encrypted form"
//usage: "\n -m Encrypt using md5, not des"
//usage: "\n -c ALG "CRYPT_METHODS_HELP_STR
//usage: "\n -R DIR Directory to chroot into"
-//usage: )
#include "libbb.h"