From e5e673bafe18032df3b6b7634410a6795e809f2a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 26 Aug 2011 23:56:49 +0200 Subject: auth: Handle request service timeout in blocking mode. --- src/auth.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/auth.c b/src/auth.c index 45d6c32..1280c88 100644 --- a/src/auth.c +++ b/src/auth.c @@ -71,8 +71,13 @@ static int ssh_userauth_request_service(ssh_session session) do { rc = ssh_service_request(session,"ssh-userauth"); if (ssh_is_blocking(session)) { - if(rc == SSH_AGAIN) - ssh_handle_packets(session, -2); + if (rc == SSH_AGAIN) { + int err = ssh_handle_packets(session, -2); + if (err != SSH_OK) { + /* error or timeout */ + return SSH_ERROR; + } + } } else { /* nonblocking */ ssh_handle_packets(session, 0); -- cgit