diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-08-05 14:33:37 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-08-05 14:33:37 +0000 |
commit | a4d0cd0a31f06ebefea4bd73b8e5872452583b58 (patch) | |
tree | 955192c78de56180c47491d4966455fa7e7e1104 /loginutils | |
parent | f2b846e27718624e697cd87e9f4025826dea9ff2 (diff) | |
download | busybox-w32-a4d0cd0a31f06ebefea4bd73b8e5872452583b58.tar.gz busybox-w32-a4d0cd0a31f06ebefea4bd73b8e5872452583b58.tar.bz2 busybox-w32-a4d0cd0a31f06ebefea4bd73b8e5872452583b58.zip |
- don't free user-supplied string (via -e)
- fix helptext
(r23046 from trunk)
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/chpasswd.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 | } |