about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2000-11-08 17:09:15 +0000
committerBart Schaefer <barts@users.sourceforge.net>2000-11-08 17:09:15 +0000
commit0ce5e0f3038bfb2cf7e584cd26bbb417dc0ec10c (patch)
tree6f3d5f54435b19fea389cf5352c6be3f98abad4f /Src/utils.c
parent468e3b59dc47fee6822e74bbed612c1cc1192b8b (diff)
downloadzsh-0ce5e0f3038bfb2cf7e584cd26bbb417dc0ec10c.tar.gz
zsh-0ce5e0f3038bfb2cf7e584cd26bbb417dc0ec10c.tar.xz
zsh-0ce5e0f3038bfb2cf7e584cd26bbb417dc0ec10c.zip
Try blocking read() in read_poll() only if select() returns error (or
doesn't exist).
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index 686a46fbf..b7b8d1295 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -1373,7 +1373,7 @@ read_poll(int fd, int *readchar, int polltty)
 #endif
 #endif
 
-    if (ret <= 0) {
+    if (ret < 0) {
 	/*
 	 * Final attempt: set non-blocking read and try to read a character.
 	 * Praise Bill, this works under Cygwin (nothing else seems to).