aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/usage.h6
-rw-r--r--loginutils/chpasswd.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h
index ceac6d0af..dcb6e344e 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -2916,13 +2916,13 @@
2916 "\n -u Unlock (re-enable) account" \ 2916 "\n -u Unlock (re-enable) account" \
2917 2917
2918#define chpasswd_trivial_usage \ 2918#define chpasswd_trivial_usage \
2919 USE_GETOPT_LONG("[--md5|--encrypt]") SKIP_GETOPT_LONG("[-m|-e]") 2919 USE_GETOPT_LONG("[--md5|--encrypted]") SKIP_GETOPT_LONG("[-m|-e]")
2920#define chpasswd_full_usage "\n\n" \ 2920#define chpasswd_full_usage "\n\n" \
2921 "Read user:password information from stdin\n" \ 2921 "Read user:password information from stdin " \
2922 "and update /etc/passwd accordingly.\n" \ 2922 "and update /etc/passwd accordingly.\n" \
2923 "\nOptions:" \ 2923 "\nOptions:" \
2924 USE_GETOPT_LONG( \ 2924 USE_GETOPT_LONG( \
2925 "\n -e,--encrypt Supplied passwords are in encrypted form" \ 2925 "\n -e,--encrypted Supplied passwords are in encrypted form" \
2926 "\n -m,--md5 Use MD5 encryption instead of DES" \ 2926 "\n -m,--md5 Use MD5 encryption instead of DES" \
2927 ) \ 2927 ) \
2928 SKIP_GETOPT_LONG( \ 2928 SKIP_GETOPT_LONG( \
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c
index 7308596ad..7908ef1a8 100644
--- a/loginutils/chpasswd.c
+++ b/loginutils/chpasswd.c
@@ -65,8 +65,8 @@ int chpasswd_main(int argc ATTRIBUTE_UNUSED, char **argv)
65 bb_info_msg("Password for '%s' changed", name); 65 bb_info_msg("Password for '%s' changed", name);
66 logmode = LOGMODE_STDIO; 66 logmode = LOGMODE_STDIO;
67 free(name); 67 free(name);
68 free(pass); 68 if (!(opt & OPT_ENC))
69 free(pass);
69 } 70 }
70 71 return EXIT_SUCCESS;
71 return 0;
72} 72}