comment tweak

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2013-11-19 13:16:44 +01:00
parent 9c1c605b1a
commit 6ef7729112

View File

@ -70,7 +70,7 @@ int FAST_FUNC ask_and_check_password_extended(const struct passwd *pw,
fake_it:
unencrypted = bb_ask(STDIN_FILENO, timeout, prompt);
if (!unencrypted) {
/* EOF (such as ^D) or error (such as ^C) */
/* EOF (such as ^D) or error (such as ^C) or timeout */
return -1;
}
encrypted = pw_encrypt(unencrypted, correct, 1);