diff options
author | Rob Landley <rob@landley.net> | 2006-01-09 01:07:24 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-01-09 01:07:24 +0000 |
commit | 3d1bbf0a5fb02e5336b29ca7ba53e7fc3be958d7 (patch) | |
tree | 0756c1ae8425727b8be4bbc7513c1736c3ce62ac /libbb | |
parent | 8bcc6e964bd5e427046c0893ff5aef7fdb147a93 (diff) | |
download | busybox-3d1bbf0a5fb02e5336b29ca7ba53e7fc3be958d7.tar.gz |
Minor cosmetic fix from Tito.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/correct_password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c index 570aa7e86..039379ae1 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c @@ -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; } |