Subject: Re: Fix for hole in com.c flow control state machine
To: None <duwe@immd4.informatik.uni-erlangen.de, mycroft@ai.mit.edu>
From: Peter Seebach <seebs@solon.com>
List: current-users
Date: 07/03/1995 20:22:20
>@@ -675,6 +674,7 @@
> } while (--n);
> } else
> outb(iobase + com_data, getc(&tp->t_outq));
>+ }
Shouldn't that be
} while (--n);
! } else {
outb(iobase + com_data, getc(&tp->t_outq));
+ }
?
-s