aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-01-26 13:02:03 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2021-02-02 14:54:29 +0100
commit27ae859c50b6eedb9f43e21cdc774a2fefd726e1 (patch)
tree1cb9fc04cb756eab6b72f5e9dfe594f625f8ad20
parent5bef6781fa434bd65558cefe950f670df34fea4e (diff)
downloadbusybox-w32-27ae859c50b6eedb9f43e21cdc774a2fefd726e1.tar.gz
busybox-w32-27ae859c50b6eedb9f43e21cdc774a2fefd726e1.tar.bz2
busybox-w32-27ae859c50b6eedb9f43e21cdc774a2fefd726e1.zip
cryptpw: typo in usage message
'[-p N]' should be '[-P N]' in the trivial usage message. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--loginutils/cryptpw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c
index 645f1bb09..2109e2eb5 100644
--- a/loginutils/cryptpw.c
+++ b/loginutils/cryptpw.c
@@ -32,7 +32,7 @@
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: "[-s] [-p N] [-m TYPE] [-S SALT] [PASSWORD] [SALT]" 35//usage: "[-P FD] [-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"
@@ -72,8 +72,8 @@ ENVIRONMENT
72 A list of options which will be evaluated before the ones 72 A list of options which will be evaluated before the ones
73 specified on the command line. 73 specified on the command line.
74BUGS 74BUGS
75 This programs suffers of a bad case of featuritis. 75 This program suffers of a bad case of featuritis.
76 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 76 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
77 77
78Very true... 78Very true...
79 79