Save a few bytes in error message.
authorRob Landley <rob@landley.net>
Sun, 5 Feb 2006 03:31:44 +0000 (03:31 -0000)
committerRob Landley <rob@landley.net>
Sun, 5 Feb 2006 03:31:44 +0000 (03:31 -0000)
libbb/obscure.c

index 8df3e7504622073853332bd8782a41c40a14f75a..4d159a77166c5f8eb00a735f564123dc357a54ef 100644 (file)
@@ -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);