diff options
author | 2001-04-17 09:52:48 +0000 | |
---|---|---|
committer | 2001-04-17 09:52:48 +0000 | |
commit | 6222238544f6988280c57db6790c49c7ff20af1a (patch) | |
tree | 48f5d7c514b545b2f7fe1d1b838a281f78ce7fde /usr.bin/ssh/clientloop.c | |
parent | check for key!=NULL, thanks to costa (diff) | |
download | wireguard-openbsd-6222238544f6988280c57db6790c49c7ff20af1a.tar.xz wireguard-openbsd-6222238544f6988280c57db6790c49c7ff20af1a.zip |
handle EINTR/EAGAIN on read; ok deraadt@
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 95c00f3431d..2709ce356f0 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.63 2001/04/15 17:16:00 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.64 2001/04/17 09:52:48 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -625,6 +625,8 @@ client_process_input(fd_set * readset) if (FD_ISSET(fileno(stdin), readset)) { /* Read as much as possible. */ len = read(fileno(stdin), buf, sizeof(buf)); + if (len < 0 && (errno == EAGAIN || errno == EINTR)) + return; /* we'll try again later */ if (len <= 0) { /* * Received EOF or error. They are treated @@ -678,7 +680,7 @@ client_process_output(fd_set * writeset) len = write(fileno(stdout), buffer_ptr(&stdout_buffer), buffer_len(&stdout_buffer)); if (len <= 0) { - if (errno == EAGAIN) + if (errno == EINTR || errno == EAGAIN) len = 0; else { /* @@ -701,7 +703,7 @@ client_process_output(fd_set * writeset) len = write(fileno(stderr), buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer)); if (len <= 0) { - if (errno == EAGAIN) + if (errno == EINTR || errno == EAGAIN) len = 0; else { /* EOF or error, but can't even print error message. */ |