diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-19 13:16:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-19 13:16:44 +0100 |
commit | 6ef77291122d231754e7292630681dc67c109d60 (patch) | |
tree | cb2cefa7f99a9972bdc9c0a9e6bc62bfb6493e95 | |
parent | 9c1c605b1a8f34aef347bd9c2e4aea251e556d1b (diff) | |
download | busybox-w32-6ef77291122d231754e7292630681dc67c109d60.tar.gz busybox-w32-6ef77291122d231754e7292630681dc67c109d60.tar.bz2 busybox-w32-6ef77291122d231754e7292630681dc67c109d60.zip |
comment tweak
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 d02d0d6a0..d39a5839c 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c | |||
@@ -70,7 +70,7 @@ int FAST_FUNC ask_and_check_password_extended(const struct passwd *pw, | |||
70 | fake_it: | 70 | fake_it: |
71 | unencrypted = bb_ask(STDIN_FILENO, timeout, prompt); | 71 | unencrypted = bb_ask(STDIN_FILENO, timeout, prompt); |
72 | if (!unencrypted) { | 72 | if (!unencrypted) { |
73 | /* EOF (such as ^D) or error (such as ^C) */ | 73 | /* EOF (such as ^D) or error (such as ^C) or timeout */ |
74 | return -1; | 74 | return -1; |
75 | } | 75 | } |
76 | encrypted = pw_encrypt(unencrypted, correct, 1); | 76 | encrypted = pw_encrypt(unencrypted, correct, 1); |