- (dtucker) [serverloop.c] Get ifdef/ifndef the right way around for the bug
   #1102 workaround.
diff --git a/serverloop.c b/serverloop.c
index c1eb288..e370f63 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -391,7 +391,7 @@
 		len = read(fdout, buf, sizeof(buf));
 		if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
 			/* do nothing */
-#ifdef PTY_ZEROREAD
+#ifndef PTY_ZEROREAD
 		} else if (len <= 0) {
 #else
 		} else if (len < 0 || (len == 0 && errno != 0)) {
@@ -408,7 +408,7 @@
 		len = read(fderr, buf, sizeof(buf));
 		if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
 			/* do nothing */
-#ifdef PTY_ZEROREAD
+#ifndef PTY_ZEROREAD
 		} else if (len <= 0) {
 #else
 		} else if (len < 0 || (len == 0 && errno != 0)) {