Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-01-09 04:07:24 +0300
committerRob Landley <rob@landley.net>2006-01-09 04:07:24 +0300
commit3d1bbf0a5fb02e5336b29ca7ba53e7fc3be958d7 (patch)
tree0756c1ae8425727b8be4bbc7513c1736c3ce62ac /libbb/correct_password.c
parent8bcc6e964bd5e427046c0893ff5aef7fdb147a93 (diff)
Minor cosmetic fix from Tito.
Diffstat (limited to 'libbb/correct_password.c')
-rw-r--r--libbb/correct_password.c2
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;
}