From 20b23ccbf96c0d2a2da1bfa5860bca6c4ea5ab33 Mon Sep 17 00:00:00 2001 From: landley Date: Sun, 5 Feb 2006 03:31:44 +0000 Subject: Save a few bytes in error message. git-svn-id: svn://busybox.net/trunk/busybox@13832 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/obscure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3-55-g6feb