From 27129e60a6fdad432557d7d51e182b016ec5e1a9 Mon Sep 17 00:00:00 2001 From: Gary Ching-Pang Lin Date: Tue, 2 Oct 2012 18:17:29 +0800 Subject: [PATCH] Don't print Backspace as we print nothing --- MokManager.c | 1 - 1 file changed, 1 deletion(-) diff --git a/MokManager.c b/MokManager.c index b51b8a7..4f5d6db 100644 --- a/MokManager.c +++ b/MokManager.c @@ -453,7 +453,6 @@ static UINT8 get_password (UINT32 *length, CHAR16 *password) if (count == 0 && key.UnicodeChar == CHAR_BACKSPACE) { continue; } else if (key.UnicodeChar == CHAR_BACKSPACE) { - Print(L"%c", CHAR_BACKSPACE); input[--count] = '\0'; continue; }