From cd09bf8f515c014fcceffaf2aeb8ed434dd527f2 Mon Sep 17 00:00:00 2001 From: Hubert Feurstein Date: Wed, 17 Jun 2015 15:02:53 +0200 Subject: login: fix broken login command It was possible to login with ctrl-c or an empty password. This bug was introduced by the recent digest changes in common/password.c (e49a47fb). The function check_passwd returns now also negative error codes which were not correctly handled in do_login. Signed-off-by: Hubert Feurstein Signed-off-by: Sascha Hauer --- commands/login.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/login.c') diff --git a/commands/login.c b/commands/login.c index 210eb203ac..bf5085c854 100644 --- a/commands/login.c +++ b/commands/login.c @@ -71,7 +71,7 @@ static int do_login(int argc, char *argv[]) run_command(timeout_cmd); } - if (check_passwd(passwd, passwd_len)) + if (check_passwd(passwd, passwd_len) == 1) return 0; } while(1); -- cgit v1.2.3