From: Gregory Minshall Date: Mon, 11 May 1987 06:26:04 +0000 (-0800) Subject: Fix bug (jbvb) in EINP (supposed to turn OFF MDT bits). X-Git-Tag: BSD-4_3_Net_1-Snapshot-Development~4645 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/2b018fa0ab177117ff42a1f041c97d192386a979 Fix bug (jbvb) in EINP (supposed to turn OFF MDT bits). SCCS-vsn: usr.bin/tn3270/ctlr/inbound.c 1.8 --- diff --git a/usr/src/usr.bin/tn3270/ctlr/inbound.c b/usr/src/usr.bin/tn3270/ctlr/inbound.c index adb9d65a05..2b34c062ab 100644 --- a/usr/src/usr.bin/tn3270/ctlr/inbound.c +++ b/usr/src/usr.bin/tn3270/ctlr/inbound.c @@ -839,7 +839,7 @@ int count; /* how much data there is */ case FCN_EINP: if (!FormattedScreen()) { i = CursorAddress; - TurnOnMdt(i); + TurnOffMdt(i); do { AddHost(i, 0); i = ScreenInc(i); @@ -855,7 +855,7 @@ int count; /* how much data there is */ do { if (IsUnProtected(ScreenInc(i))) { i = ScreenInc(i); - TurnOnMdt(i); + TurnOffMdt(i); do { AddHost(i, 0); i = ScreenInc(i);