Minor cosmetic fix from Tito.

This commit is contained in:
Rob Landley 2006-01-09 01:07:24 +00:00
parent 8bcc6e964b
commit 3d1bbf0a5f

View File

@ -55,7 +55,7 @@ int correct_password ( const struct passwd *pw )
struct spwd *sp = getspnam ( pw-> pw_name );
if ( !sp )
bb_error_msg_and_die ( "no valid shadow password" );
bb_error_msg_and_die ( "\nno valid shadow password" );
correct = sp-> sp_pwdp;
}