diff options
author | Rob Landley <rob@landley.net> | 2006-02-05 03:31:44 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-05 03:31:44 +0000 |
commit | bec26527a1849be6f81e9eaa56d0ff40a20338d6 (patch) | |
tree | fdc81db9ae880678c1b71581366b47d5b3337fc8 /libbb/obscure.c | |
parent | a421ba8203df8cd8a09d4bfb158057d9e717648f (diff) | |
download | busybox-w32-bec26527a1849be6f81e9eaa56d0ff40a20338d6.tar.gz busybox-w32-bec26527a1849be6f81e9eaa56d0ff40a20338d6.tar.bz2 busybox-w32-bec26527a1849be6f81e9eaa56d0ff40a20338d6.zip |
Save a few bytes in error message.
Diffstat (limited to 'libbb/obscure.c')
-rw-r--r-- | libbb/obscure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/obscure.c b/libbb/obscure.c index 8df3e7504..4d159a771 100644 --- a/libbb/obscure.c +++ b/libbb/obscure.c | |||
@@ -163,7 +163,7 @@ password_check(const char *old, const char *newval, const struct passwd *pwdp) | |||
163 | msg = "too similiar"; | 163 | msg = "too similiar"; |
164 | 164 | ||
165 | else if ( strstr(newval, pwdp->pw_name) ) | 165 | else if ( strstr(newval, pwdp->pw_name) ) |
166 | msg = "don't use something like your username as password"; | 166 | msg = "username in password"; |
167 | 167 | ||
168 | else { | 168 | else { |
169 | safe_strncpy(wrapped + lenwrap, wrapped, lenwrap + 1); | 169 | safe_strncpy(wrapped + lenwrap, wrapped, lenwrap + 1); |