aboutsummaryrefslogtreecommitdiff
path: root/loginutils/vlock.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-23 13:11:49 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-23 13:11:49 +0000
commita36a676923a674e35aae65faaa169fab9d765023 (patch)
treec99eb90ceea7adfebc157ca28a45cf9ae81b4a57 /loginutils/vlock.c
parent7f1f5b001f5a0dee058024f7bee04dced38877df (diff)
downloadbusybox-a36a676923a674e35aae65faaa169fab9d765023.tar.gz
correct_password: undo whitespace damage.
vlock + correct_password: fix incorrect line breaks in messages.
Diffstat (limited to 'loginutils/vlock.c')
-rw-r--r--loginutils/vlock.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/loginutils/vlock.c b/loginutils/vlock.c
index b4426ad41..564b6d527 100644
--- a/loginutils/vlock.c
+++ b/loginutils/vlock.c
@@ -108,13 +108,12 @@ int vlock_main(int argc, char **argv)
tcsetattr(STDIN_FILENO, TCSANOW, &term);
do {
- printf("Virtual Console%s locked.\n%s's ", (o_lock_all) ? "s" : "", pw->pw_name);
- fflush(stdout);
- if (correct_password (pw)) {
+ printf("Virtual Console%s locked. Enter %s's password to unlock\n", (o_lock_all) ? "s" : "", pw->pw_name);
+ if (correct_password(pw)) {
break;
}
bb_do_delay(FAIL_DELAY);
- puts("Password incorrect.");
+ puts("Password incorrect");
} while (1);
restore_terminal();
return 0;