diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-13 22:34:05 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-13 22:34:05 +0100 |
commit | 84d5eddb25930ee8a5ff96536ca6f707d793eb24 (patch) | |
tree | 21406cb8b2a2661459e3aba4428e74995d69368d /loginutils | |
parent | 63139b531f7f1d71d8274810b163da1a78d4609e (diff) | |
download | busybox-w32-84d5eddb25930ee8a5ff96536ca6f707d793eb24.tar.gz busybox-w32-84d5eddb25930ee8a5ff96536ca6f707d793eb24.tar.bz2 busybox-w32-84d5eddb25930ee8a5ff96536ca6f707d793eb24.zip |
help text: replace [OPTIONS] with actual options (if not too long)
function old new delta
packed_usage 33620 33665 +45
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/cryptpw.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c index fbb7f0515..645f1bb09 100644 --- a/loginutils/cryptpw.c +++ b/loginutils/cryptpw.c | |||
@@ -32,22 +32,14 @@ | |||
32 | //kbuild:lib-$(CONFIG_MKPASSWD) += cryptpw.o | 32 | //kbuild:lib-$(CONFIG_MKPASSWD) += cryptpw.o |
33 | 33 | ||
34 | //usage:#define cryptpw_trivial_usage | 34 | //usage:#define cryptpw_trivial_usage |
35 | //usage: "[OPTIONS] [PASSWORD] [SALT]" | 35 | //usage: "[-s] [-p N] [-m TYPE] [-S SALT] [PASSWORD] [SALT]" |
36 | /* We do support -s, we just don't mention it */ | 36 | /* We do support -s, we just don't mention it */ |
37 | //usage:#define cryptpw_full_usage "\n\n" | 37 | //usage:#define cryptpw_full_usage "\n\n" |
38 | //usage: "Print crypt(3) hashed PASSWORD\n" | 38 | //usage: "Print crypt(3) hashed PASSWORD\n" |
39 | //usage: IF_LONG_OPTS( | ||
40 | //usage: "\n -P,--password-fd N Read password from fd N" | ||
41 | /* //usage: "\n -s,--stdin Use stdin; like -P0" */ | ||
42 | //usage: "\n -m,--method TYPE "CRYPT_METHODS_HELP_STR | ||
43 | //usage: "\n -S,--salt SALT" | ||
44 | //usage: ) | ||
45 | //usage: IF_NOT_LONG_OPTS( | ||
46 | //usage: "\n -P N Read password from fd N" | 39 | //usage: "\n -P N Read password from fd N" |
47 | /* //usage: "\n -s Use stdin; like -P0" */ | 40 | /* //usage: "\n -s Use stdin; like -P0" */ |
48 | //usage: "\n -m TYPE "CRYPT_METHODS_HELP_STR | 41 | //usage: "\n -m TYPE "CRYPT_METHODS_HELP_STR |
49 | //usage: "\n -S SALT" | 42 | //usage: "\n -S SALT" |
50 | //usage: ) | ||
51 | 43 | ||
52 | #include "libbb.h" | 44 | #include "libbb.h" |
53 | 45 | ||