summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2001-03-06 01:08:27 +0000
committermillert <millert@openbsd.org>2001-03-06 01:08:27 +0000
commit1bd3b5d8af0b91eb4cfb09a63b414a1a8b102d37 (patch)
treec03dbc575570f92a3498e87f8abc6de14603fcd2
parentremove mention of freebsd_lib (diff)
downloadwireguard-openbsd-1bd3b5d8af0b91eb4cfb09a63b414a1a8b102d37.tar.xz
wireguard-openbsd-1bd3b5d8af0b91eb4cfb09a63b414a1a8b102d37.zip
If read() fails with EINTR deal with it the same way we treat EAGAIN
-rw-r--r--usr.bin/ssh/clientloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c
index cdd32dbbebb..4805f3c8312 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.52 2001/02/28 08:45:39 markus Exp $");
+RCSID("$OpenBSD: clientloop.c,v 1.53 2001/03/06 01:08:27 millert Exp $");
#include "ssh.h"
#include "ssh1.h"
@@ -491,7 +491,7 @@ client_process_net_input(fd_set * readset)
* There is a kernel bug on Solaris that causes select to
* sometimes wake up even though there is no data available.
*/
- if (len < 0 && errno == EAGAIN)
+ if (len < 0 && (errno == EAGAIN || errno == EINTR))
len = 0;
if (len < 0) {