From: Rob Landley Date: Sun, 5 Feb 2006 03:31:44 +0000 (-0000) Subject: Save a few bytes in error message. X-Git-Tag: 1_1_0~243 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bec26527a1849be6f81e9eaa56d0ff40a20338d6;p=oweals%2Fbusybox.git Save a few bytes in error message. --- 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) msg = "too similiar"; else if ( strstr(newval, pwdp->pw_name) ) - msg = "don't use something like your username as password"; + msg = "username in password"; else { safe_strncpy(wrapped + lenwrap, wrapped, lenwrap + 1);