diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-13 03:31:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-13 03:31:45 +0200 |
commit | 3a240212d9133d7d8a4462e0410380c4eaf91c90 (patch) | |
tree | d1469c220681200f605bc44bb6024918ea4452ea | |
parent | 12a432715f066cf9d677316a39c9e0ebc6d72404 (diff) | |
download | busybox-w32-3a240212d9133d7d8a4462e0410380c4eaf91c90.tar.gz busybox-w32-3a240212d9133d7d8a4462e0410380c4eaf91c90.tar.bz2 busybox-w32-3a240212d9133d7d8a4462e0410380c4eaf91c90.zip |
passwd: shorter help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | loginutils/passwd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/loginutils/passwd.c b/loginutils/passwd.c index 8c47e65ff..b3ce646f1 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c | |||
@@ -6,13 +6,13 @@ | |||
6 | //usage:#define passwd_trivial_usage | 6 | //usage:#define passwd_trivial_usage |
7 | //usage: "[OPTIONS] [USER]" | 7 | //usage: "[OPTIONS] [USER]" |
8 | //usage:#define passwd_full_usage "\n\n" | 8 | //usage:#define passwd_full_usage "\n\n" |
9 | //usage: "Change USER's password. If no USER is specified,\n" | 9 | //usage: "Change USER's password (default: current user)" |
10 | //usage: "changes the password for the current user.\n" | 10 | //usage: "\n" |
11 | //usage: "\nOptions:" | 11 | //usage: "\nOptions:" |
12 | //usage: "\n -a ALG Encryption method" | 12 | //usage: "\n -a ALG Encryption method" |
13 | //usage: "\n -d Delete password for the account" | 13 | //usage: "\n -d Set password to ''" |
14 | //usage: "\n -l Lock (disable) account" | 14 | //usage: "\n -l Lock (disable) account" |
15 | //usage: "\n -u Unlock (re-enable) account" | 15 | //usage: "\n -u Unlock (enable) account" |
16 | 16 | ||
17 | #include "libbb.h" | 17 | #include "libbb.h" |
18 | #include <syslog.h> | 18 | #include <syslog.h> |