about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-01-25 16:07:49 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2015-01-25 16:07:49 -0800
commit494c251cb0b0af70ac940b42df1d6c9940e469c8 (patch)
treeae7a72c91b32f97e03332e11e8078392f930399b /Src
parent2546c86244ec2bb458580a90a0a5e0648220ad9a (diff)
downloadzsh-494c251cb0b0af70ac940b42df1d6c9940e469c8.tar.gz
zsh-494c251cb0b0af70ac940b42df1d6c9940e469c8.tar.xz
zsh-494c251cb0b0af70ac940b42df1d6c9940e469c8.zip
34399: fix polltty thinko from 34365
Also add missing ChangeLog entry for 34365.
Diffstat (limited to 'Src')
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index 45f596a42..d38babbe4 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -2323,7 +2323,7 @@ read_poll(int fd, int *readchar, int polltty, zlong microseconds)
      * as plausible as it sounds, but it seems the right way to guess.
      *		pws 2000/06/26
      */
-    if (fd >= 0) {
+    if (polltty && fd >= 0) {
 	gettyinfo(&ti);
 	if ((polltty = ti.tio.c_cc[VMIN])) {
 	    ti.tio.c_cc[VMIN] = 0;