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-w32-caba1a16ec4a883376d53e5921917bb8485b5f49.tar.gz
busybox-w32-caba1a16ec4a883376d53e5921917bb8485b5f49.tar.bz2
busybox-w32-caba1a16ec4a883376d53e5921917bb8485b5f49.zip
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 @@
24//kbuild:lib-$(CONFIG_CHPASSWD) += chpasswd.o 24//kbuild:lib-$(CONFIG_CHPASSWD) += chpasswd.o
25 25
26//usage:#define chpasswd_trivial_usage 26//usage:#define chpasswd_trivial_usage
27//usage: IF_LONG_OPTS("[--md5|--encrypted|--crypt-method|--root]") IF_NOT_LONG_OPTS("[-m|-e|-c|-R]") 27//usage: "[-me] [-c ALG] [-R DIR]"
28//usage:#define chpasswd_full_usage "\n\n" 28//usage:#define chpasswd_full_usage "\n\n"
29//usage: "Read user:password from stdin and update /etc/passwd\n" 29//usage: "Read user:password from stdin and update /etc/passwd\n"
30//usage: IF_LONG_OPTS(
31//usage: "\n -e,--encrypted Supplied passwords are in encrypted form"
32//usage: "\n -m,--md5 Encrypt using md5, not des"
33//usage: "\n -c,--crypt-method ALG "CRYPT_METHODS_HELP_STR
34//usage: "\n -R,--root DIR Directory to chroot into"
35//usage: )
36//usage: IF_NOT_LONG_OPTS(
37//usage: "\n -e Supplied passwords are in encrypted form" 30//usage: "\n -e Supplied passwords are in encrypted form"
38//usage: "\n -m Encrypt using md5, not des" 31//usage: "\n -m Encrypt using md5, not des"
39//usage: "\n -c ALG "CRYPT_METHODS_HELP_STR 32//usage: "\n -c ALG "CRYPT_METHODS_HELP_STR
40//usage: "\n -R DIR Directory to chroot into" 33//usage: "\n -R DIR Directory to chroot into"
41//usage: )
42 34
43#include "libbb.h" 35#include "libbb.h"
44 36